Skip to content Skip to sidebar Skip to footer

Javascript Numerical Library - Vectors, Matrices, Determinates, Inversion

Is there a reasonable numerical library in pure JavaScript? I'd like array-based vectors, matrices, determinate, and matrix inversion. This is only for small problems, not big on

Solution 1:

Maybe also of interest: http://www.numericjs.com/

Solution 2:

math.js is a library which comes with matrix support. You can easily manipulate matrices and do matrix calculations.

http://mathjs.org

See the example on using matrices.

Solution 3:

Solution 4:

There is also, the Matlab-like javascript library: https://github.com/Etsitpab/JSM. It makes easy to deal with ND-Arrays and provides many codes for data processing.

Post a Comment for "Javascript Numerical Library - Vectors, Matrices, Determinates, Inversion"