epstk and octave plotting similar to matlab's subplot?

Stefan Müller stefan.mueller at fgan.de
Mon May 18 06:31:57 CDT 2009


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



More information about the Help-octave mailing list