user176121
user176121

Reputation: 720

What are some Linux-compatible MATLAB substitutes?

It seems you need a license to use MATLAB. I do not have one so I was wondering if there was some highly-compatible substitute for it in Linux.

Upvotes: 1

Views: 1136

Answers (6)

Blair
Blair

Reputation: 3751

I'm not sure if these are applicable without knowing what you're trying to achieve.

Sadly, you won't get anything as powerful as Matlab without paying up.

Upvotes: 7

Adrian
Adrian

Reputation: 3306

Again depending on what exactly you need to do

  • R - a free software environment for statistical computing and graphics.

Upvotes: 3

Rorick
Rorick

Reputation: 8953

  1. Octave
  2. Scilab
  3. Python + SciPy + MatPlotLib

Upvotes: 1

b.roth
b.roth

Reputation: 9542

Besides Octave, check also: Pari/GP http://pari.math.u-bordeaux.fr/download.html

Upvotes: 0

Jesper
Jesper

Reputation: 206916

There is Octave, an open source Matlab-like program. Don't know how compatible it is with the 'real' Matlab.

Upvotes: 1

Mark Rushakoff
Mark Rushakoff

Reputation: 258358

GNU Octave has "a language that is mostly compatible with MATLAB". They also have a section in their FAQ about MATLAB compatibility that covers pretty much all the difficulties/differences between the two.

Depending on what exactly you need to do:

  • gnuplot is good for basic-intermediate graphing
  • matplotlib (using Python) is also good for graphing
  • Maxima is a computer algebra system

Upvotes: 9

Related Questions