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
Maybe also of interest: http://www.numericjs.com/
I know of
http://code.google.com/p/webgl-mjs/
and
http://sylvester.jcoglan.com/
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.
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.