PDA

View Full Version : Programs to compute simple matrix operations; free for commercial use


KingNothing
Aug26-11, 03:23 PM
Do any such programs exist?

micromass
Aug26-11, 03:32 PM
You mean you're looking for a free program that can work with matrices??

Sure, that exists. Here is one: http://maxima.sourceforge.net/

DaleSpam
Aug26-11, 04:37 PM
Python.

Simon_Tyler
Aug27-11, 01:27 AM
I second DaleSpam, Python and NumPy (http://numpy.scipy.org/) is what you want. (Maxima is good with numerics, but is more known for its symbolics)

However, if you're used to something like matlab, then have a look at octave (http://www.gnu.org/software/octave/doc/interpreter/Introduction.html#Introduction).

Also, most programming languages have (free) libraries for array/matrix operations / linear algebra.
E.g. ATL or uBLAS are the standards for C++. Just google for more.