jsequation-solver
v1.0.1
Published
solves linear equations systems by gauss-elimination
Downloads
5
Maintainers
Readme
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]]}