@quenty/linearsystemssolver
v2.2.0
Published
Solves linear systems
Downloads
410
Readme
LinearSystemsSolver
Solves linear systems in this format:
Installation
npm install @quenty/linearsystemssolver --save
[a b | y]
[c d | z]
mutSystem = {
{a, b},
{c, d},
}
mutOutput = {y, z}
returns solution {x0, x1}
Notes
system and output get destroyed in the process