Skip to content

Small javascript library to solve a system of linear equations, invert a matrix, and nothing more.

Notifications You must be signed in to change notification settings

samyhocine/linear-solve

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Small javascript library to solve a system of linear equations, invert a matrix, and nothing more.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%