What is the best way to solve sets of linear equations using JavaScript?
I would like to find a solution for vector r
M*r = b
where M is a Matrix and b is a vector.
I understand that JavaScript isn't the best computational language, i'm simply hoping to implement my algorithm in JS for rapid prototyping.
Any references to other questions or help would be awesome! thanks in advance.