help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Some matlab stuff


From: Daniel Heiserer
Subject: Re: Some matlab stuff
Date: Thu, 16 Sep 1999 08:37:18 +0200

address@hidden wrote:
> 
> Hey. I'm new to Octave and old to Matlab. I notice that Octave uses gnuplot
> (which I've also used but little) to plot. Can Octave use all of gnuplot (i.e.
> is gnuplot a subset of Octave?) If not, is there anything that gnuplot does
> better than Octave? I'm still going through the FAQ's and the online help 
> stuff,
> so much of the questions that I have may be answered there. (still trying to
> clear a plot.
> clf doesn't work)
> 

The compatibility between matlab and octave becomes quite poor, when you
focuse on plotting. 
One reason is that gnuplot can't do all, what matlab can.
The other is, that most people don't focuse on it.

For several plotting things you can easily write your own
m-files, which do what you want (matlab does).
I have contributed a print.m some time ago.
If you look for clf.m it's not a problem.
Just write something like:
---------------
hold off
plot(0,0,';;');
title('')
xlabel('')
ylabel('')
axis()
replot;
---------------
into the file clf.m

You are right if you think, this side should be improved (at least
according to me).
Maybe someone notes all incompatibilites in the plotting between matlab
and octave and we look all what kind of  m-files we have collect them 
and make them part of the distribution.


                                 Daniel Heiserer



---------------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.  To ensure
that development continues, see www.che.wisc.edu/octave/giftform.html
Instructions for unsubscribing: www.che.wisc.edu/octave/archive.html
---------------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]