help-octave
[Top][All Lists]
Advanced

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

Re: Plot handles ?


From: Shai Ayal
Subject: Re: Plot handles ?
Date: Wed, 07 Sep 2005 14:54:53 +0300
User-agent: Mozilla Thunderbird 1.0 (X11/20041206)

plot handles are not available in current octave using gnuplot. You might want to have a look at octplot and/or oplot++ (google for them).

I am not sure, but I think what you are describing is impossible in matlab in the way you want to do it. How about the following way, which will also work with standard octplot/gnuplot:

if plotfunc is the function which creates one plot, for 3 plots a page try the following:

subplot(3,1,1)
plotfunc
subplot(3,1,2)
plotfunc
subplot(3,1,3)
plotfunc


Shai
Madhusudan Singh wrote:
Hi

I was wondering if it is possible to create plot handles with octave.

I am generating a lot of plots that are formatted identically (with titles, etc. as input parameters). I thought that it might be useful to create a function that returns the plot handle and then I could combine all the handles together in a subplot(...) ?

Is the above possible in Octave (not sure if it is possible using Matlab).

Thanks.



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------





-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

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