🚀 Socket Launch Week 🚀 Day 3: Socket Acquires Coana.Learn More
Socket
Sign inDemoInstall
Socket

linear-solve

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linear-solve

Solve a system of linear equations. Invert a matrix. Nothing else

1.2.1
latest
Source
npm
Version published
Weekly downloads
184
-65.8%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

linear

FAQs

Package last updated on 06 Dec 2016

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