@quenty/linearsystemssolver

Solves linear systems

Usage no npm install needed!

<script type="module">
  import quentyLinearsystemssolver from 'https://cdn.skypack.dev/@quenty/linearsystemssolver';
</script>

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