Javascript numerical library - vectors, matrices, determinates, inversion

前端 未结 4 588
無奈伤痛
無奈伤痛 2021-02-06 09:13

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

相关标签:
4条回答
  • 2021-02-06 09:52

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

    0 讨论(0)
  • 2021-02-06 09:59

    I know of

    http://code.google.com/p/webgl-mjs/

    and

    http://sylvester.jcoglan.com/

    0 讨论(0)
  • 2021-02-06 10:05

    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.

    0 讨论(0)
  • 2021-02-06 10:12

    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.

    0 讨论(0)
提交回复
热议问题