New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

rref

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rref

solve systems of linear equations using gaussian elimination

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

rref

solve systems of linear equations using gaussian elimination

testling badge

build status

example

var rref = require('rref');
console.log(rref([
    [ 2, 1, -1, 8 ],
    [ -3, -1, 2, -11 ],
    [ -2, 1, 2, -3 ]
]));

output:

[ [ 1, 0, 0, 2 ], [ 0, 1, 0, 3 ], [ 0, 0, 1, -1 ] ]

methods

var rref = require('rref')

rref(matrix)

Compute the reduced row echelon form for matrix in-place, returning and modifying matrix.

matrix should be an array of arrays.

install

With npm do:

npm install rref

license

MIT

kudos

based on the rosetta code rref javascript entry

Keywords

gauss-jordan

FAQs

Package last updated on 21 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts