I don't need anything fancy; basically, if it will let me do some basic Matrix*Matrix stuff I'll be happy.
Asked
Active
Viewed 1.1k times
23
-
is this: http://paczynski.net/testarea/matrix.html ? the web is full of them – Poelinca Dorin Nov 26 '10 at 16:14
-
https://github.com/cgrabowski/xform-js/ – orb May 01 '15 at 10:35
2 Answers
29
You could use numericjs.com. It's a javascript numerical analysis library that I'm working on that has several standard matrix algorithms for arbitrary sized dense matrices.

Sébastien Loisel
- 518
- 5
- 9
4
Numericjs.com is good for front end. It is not a great module for nodejs backend. In my project, I use this module: node-sylvester. It also has a nice explanation page: The Sylvester Matrix Library Comes to Node.js I like this module a lot after some digging including read this page.

Grant Li
- 973
- 9
- 8
-
1[Here is my fork](https://github.com/KOLANICH/sylvester/), I've added some features needed in gamedev. The official repo is seemed to be dead. – KOLANICH May 19 '14 at 18:49