jsequation-solver

1.0.1 • Public • Published

equation-solver

jseq-solver: solves linear equations systems by gauss-elimination

use

calculate linear equation system:

     1x+1y+1z=3
     2x-3y-1z=2
     4x-5y-1z=1

{"size":3,"matrix":[

     [1,1,1,3],
     [2,-3,-1,2],
     [4,-5,-1,1]
]}

put the equations in json format in the parameters, the last value of each line corresponds to the constant!

node eq-solver {"size":3,"matrix":[[1,1,1,3],[2,-3,-1,2],[4,-5,-1,1]]}

Package Sidebar

Install

npm i jsequation-solver

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

5.92 kB

Total Files

6

Last publish

Collaborators

  • src-mgra4711