2.2.0 • Published 9 days ago

@quenty/linearsystemssolver v2.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 days ago

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