Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the best open-source (or otherwise free) MATLAB equivalent, in your opinion, and why?

Something with many built-in functions relevant to engineering and science, and a variety of good graphing capabilities. Syntax close to MATLAB's is a bonus.

I've invested some time getting into SciLab, but in retrospect I'm not too enthralled. I find that the built-in functions are written in a somewhat clunky way, and that the documentation is rather cryptic (i.e. more so than your average software documentation).

P.S. I'm aware of this page. I'm looking for positive or critical comments regarding this range of options.

share|improve this question
1  
You guys have got to stop upvoting this question! I asked it back when I didn't understand the stackoverflow Q&A format. It was closed for a reason! – Jean-François Corbett Sep 18 '12 at 10:45
Jean, could you point me to a good place where such a quesion may be asked and answered? There are plenty of similar questions in SO and I find them very useful. Unfortunately they are closed and for that reason may be out of date. – Jarekczek May 1 at 9:59

closed as not constructive by casperOne Jan 26 '12 at 12:04

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

up vote 25 down vote accepted

My experience is relatively limited, but I've had some very good results from Octave and from SciPy/matplotlib. Octave has a syntax that is virtually the same as MATLAB's and it is therefore very easy to get started with. However, I prefer python as a language to MATLAB and, for plotting at least, the syntax is close enough to MATLAB's to be simple to get you started. Also, the graph plotting quality of matplotlib is among the best I've come across and I've found nothing that compares to its tools for scrolling and zooming around data plotted on a graph.

The main disadvantage of the python tools (SciPy/NumPy/matplotlib) is that the install path is less than trivial.

share|improve this answer
2  
Thanks for pointing out plusses and minusses of two options! – Jean-François Corbett Jul 3 '09 at 11:06
7  
See also python(x,y) (www.pythonxy.com). This is a (currently Windows only) installer that installs python + SciPy + NumPy + matplotlib + lots of other stuff all in one go. – DrAl Sep 20 '10 at 10:50

I like SciPy+NumPy a lot. It is widely used and has a large community behind. Together with ipython (enhanced shell) and matplotlib (plotting library) it is a wonderful development environment.

Since it's embedded in Python, it's easy to integrate it in a general-purpose program. You can, for instance, generate plots for a web application. There are also extensions for working with NumPy arrays in MPI clusters and GPUs.

You can check this NumPy guide for Matlab users for a comparision.

share|improve this answer

I've used octave, it's pretty handy, and reasonably close in syntax... I've taken .m files and used them with minimal conversion...

http://www.octave.org/

share|improve this answer
Also: Matlab Octave compatibiliy doc: wiki.octave.org/wiki.pl?MatlabOctaveCompatibility – Stobor Jul 2 '09 at 7:09
For those who like Octave I strongly suggest migrating to Python/Numpy/Scipy/Matplotlib. They are also free, but much faster and more flexible, since you get a top-level, optionally object-oriented programming language for free ;o) – heltonbiker May 28 '12 at 19:20

R is open source and has excellent graphing capabilities. It's mainly designed for statistics but packages provide many engineering and scientific functions.

share|improve this answer

This guy is very very enthusiastic and quite persuasive about Sage, which, he says, is "wrapper around Python with tons of scientific packages added". Like you I've been looking around for a free and/or open source Matlab alternative and I've played around with Octave and Scilab a little - out of that pair I found Octave to be the more accessible, at least to a Matlab user, particularly using QtOctave which made it actually look and feel like Matlab - but I'm more excited about Sage. It seems very accessible, and it addresses the drawback of using Scipy, etc, etc, pointed out by Al, viz. installation difficulties, by installing all its dependencies, etc with it.

share|improve this answer
I tried out sage a few months ago. It seemed bloated and slow, as it tried to be many things at once, using Python, and with a web page as a front-end. – Seth Johnson Jul 7 '09 at 2:27

I've used Octave a bit when I was working on computers without Matlab licenses and while the syntax does translate really well I found that the performance was substantially worse. So, if you're looking to do anything that's computationally intensive I think the python route might be the better way to go.

UPDATE: A recent paper backs up this impression, showing a roughly 20-30 fold slow down in Octave relative to MATLAB in function call overhead benchmarks (http://arxiv.org/abs/1202.2736).

share|improve this answer
I'm doing the same thing and I'm not seeing the same performance issues. I suspect that you're in a "your mileage may vary" situation. – Bob Cross Aug 20 '09 at 18:49
That's actually encouraging as I had hoped to use Octave for teaching purposes. What kind of computing you were doing. I tried it out using algorithmic solutions to Project Euler (projecteuler.net) questions (lots of for looping) and in some cases saw orders of magnitude differences in execution time. – Ethan White Sep 2 '09 at 17:10

Not the answer you're looking for? Browse other questions tagged or ask your own question.