help-octave
[Top][All Lists]
Advanced

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

Re: epstk and octave plotting similar to matlab's subplot?


From: Stefan Müller
Subject: Re: epstk and octave plotting similar to matlab's subplot?
Date: Mon, 18 May 2009 13:31:57 +0200
User-agent: Mozilla-Thunderbird 2.0.0.19 (X11/20090103)

Hi kurt,

there is a simple way to solve you problem !


for ii = 1:4
 tmpName=sprintf('tmpPlot%02d.eps',ii);
 angel=0:0.1:2*pi;
 y=sin(angel)*ii;
 ePlotTitleDistance=15;
 ePlotTitleText=strcat('Pizza ',num2str(ii),'m Apart');
 eopen(tmpName)
 etitle(ePlotTitleText);
 epolar(angel,y);
 eclose
 ebbox(5);
end
eopen('multipolarplot.eps')
for ii = 1:4
 tmpName=sprintf('tmpPlot%02d.eps',ii);
 esubeps(4,1,ii,1,tmpName);
end
eclose
eview


Stefan



reply via email to

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