Skip to content
Back to Libraries

Numeric.js

2k

Numerical analysis in JavaScript

License
MIT
Released
2011
Stars
2k

Use Cases

Linear algebra, matrix decomposition, solving equations, optimization

Code Example

import numeric from 'numeric';
const A = [[1, 2], [3, 4]];
const b = [5, 6];
const x = numeric.solve(A, b);

Related Libraries