help-octave
[Top][All Lists]
Advanced

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

eps plotting


From: Matt Funk
Subject: eps plotting
Date: Thu, 22 Mar 2007 11:34:59 -0600
User-agent: KMail/1.9.5

Hi,
i am plotting a graph directly to an eps file via: 
gset terminal postscript eps
which i then convert via the system call ps2pdf to a pdf.

i was wondering if there is a way to automatically have the graph be size of 
the page? what i get right now is that the page is pretty big and the plot is 
in the lower left corner. I guess what i am looking for is a way to set the 
eps bounding box to the size of the plot.

thanks
mat

On Thursday 22 March 2007 10:05, Steve C. Thompson wrote:
> On Thu, 2007-03-22 at 02:36 -0700, olleorama wrote:
> > I want to plot several plots, like I would do in matlab:
> >
> > for i=1:whatever
> >          figure(i)
> >          plot(x,y)
> > end
> >
> > The problem is that gnuplot closes the previous plot before it
> > makes a new one.
>
> clear
> closeplot
>
> for i = 1 : 5
>   figure (i);
>   clearplot
>   plot (rand (1, 10));
> end
>
> Steve
>
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://www.cae.wisc.edu/mailman/listinfo/help-octave


reply via email to

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