Solve a system of linear equations. Invert a matrix. Nothing else
npm install linear-solve
javascript
linear.solve([[ 1, 2],[ 3, 4]], [5, 11]);
// returns [1, 2]
`Invert matrices
`javascript
linear.invert([[2,0],[0,2]]);
//returns [[.5, 0], [0, .5]]
``