Haxe lib to solve a system of linear equations?

Is anyone aware of an haxe lib that could be used to solve a system of n*m linear equations? I couldn’t find any but before having to code it from scratch, I prefer to ask just to be sure :wink:

Perhaps you could search for an AS3 lib that does this? It might be easy to port. If not AS3, JavaScript is a not-as-great but might-not-be-too-hard-to-port solution

Didn’t find any AS3 (or haxe) lib to do it. Anyway my equations where expressed in different modulo space so it was even a bit more tricky to solve than just a simple system of usual linear equations. I end-up coding my own solver that works pretty well. Thanks :wink:

1 Like