Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Matplotlib in Python vs. Matlab, which one has much better graphicalpressentation?

Reply
Thread Tools

Matplotlib in Python vs. Matlab, which one has much better graphicalpressentation?

 
 
N/A
Guest
Posts: n/a
 
      05-10-2006
Hi all,

Can I have your opinions on Matlab vs. Matplotlib in Python in terms of
2D and 3D graphical presentation please.

Matplotlib in Python vs. Matlab, which one has much better graphical
pressentation?
 
Reply With Quote
 
 
 
 
DeepBlue
Guest
Posts: n/a
 
      05-11-2006
anyone?

N/A wrote:
> Hi all,
>
> Can I have your opinions on Matlab vs. Matplotlib in Python in terms of
> 2D and 3D graphical presentation please.
>
> Matplotlib in Python vs. Matlab, which one has much better graphical
> pressentation?

 
Reply With Quote
 
 
 
 
Alexander Schmolck
Guest
Posts: n/a
 
      05-11-2006
N/A <> writes:

> Hi all,
>
> Can I have your opinions on Matlab vs. Matplotlib in Python in terms of 2D and
> 3D graphical presentation please.
>
>
> Matplotlib in Python vs. Matlab, which one has much better graphical
> pressentation?


As far as 2D plots are concerned I think matplotlib has been superior for some
time now, but 3D plot support is only in the making (other options do exist,
but I haven't tried MayaVi and co).

However, if you've got a license for matlab anyway, you can also fairly easily
use it from python and mix and match as required (see my mlabwrap module at
<http://mlabwrap.sf.net>).

E.g. do do a pretty surface plot from python, try:

>>> from mlabwrap import mlab; from scipy import *
>>> xx = arange(-2*pi, 2*pi, 0.2)
>>> mlab.surf(subtract.outer(sin(xx),cos(xx)))


Once matplotlib is up to the task, it should be easy to get rid of matlab
dependencies in you code.

'as
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Microcontrollers: which one ? which language ? which compiler ? The Jesus of Suburbia NZ Computing 2 02-11-2006 06:53 PM
Build a Better Blair (like Build a Better Bush, only better) Kenny Computer Support 0 05-06-2005 04:50 AM
Which one is faster ? Thank you very much... Just that C++ 3 03-19-2005 10:27 PM
MatPlotLib.MatLab troubles (how to install/run matplotlib.PyLab?) Dr. Colombes Python 3 02-23-2005 04:32 PM
Re: why is python better than eg. smalltalk?? no one has any solidarguments! you should all go to church with all that religious talk! eltronic@juno.com Python 14 04-13-2004 02:18 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57