Advanced math library or module for node.js

I am new to node.js. I am looking for a module to perform mathematical functions, such as matrix transformations or multiplication of two or more matrices, etc., Similar to Numpy in Python or Matlab. Is there a module available that could complete the task?

+7
source share
2 answers

Npm is pretty much the place for node modules.

This one looks very popular:

https://npmjs.org/package/mathjs

Here are a few more:

https://npmjs.org/search?q=math

https://npmjs.org/search?q=matrix

There are even bindings for Nvidia CUDA in Node:

https://github.com/kashif/node-cuda

+5
source share

This one seems more like matlab / R / octave / numPy: https://www.npmjs.com/package/numjs

0
source share

All Articles