linear-solve

v1.0.0
Solve a system of linear equations. Invert a matrix. Nothing else
linear algebra solve system equations invert matrix

Build Status

Solve linear systems

linear.solve([[ 1, 2],[ 3, 4]], [5, 11]);
// returns [1, 2]

Invert matrices

linear.invert([[2,0],[0,2]]);
//returns [[.5, 0], [0, .5]]

Nothing more

This library is very small, and can be used both in node and in the browser.

License

MIT

Metadata

  • MIT
  • Whatever
  • Unknown
  • released 1/17/2015

Downloads

Maintainers