help-octave
[Top][All Lists]
Advanced

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

Re: pdf print


From: Ben Abbott
Subject: Re: pdf print
Date: Wed, 27 Feb 2008 09:10:40 -0800

On Wednesday, February 27, 2008, at 10:22AM, "Ruben J. Moor" <address@hidden> 
wrote:
>Hej,
>
>does anyone know how to create pdf-files for plots in octave3 ?
>
>My GNUplot can actually write pdf files, so I used gset for all GNUplot 
>specific settings - but is there a possibilty to use the more modern 
>print-function?
>
>Thanks
>Ruben

Check the help. Just type "help print" from the octave terminal window.

Below is a simple example that works for me.

x = 0:0.01:2*pi;
plot(x,sin(x))
print test.pdf -dpdf

Ben


reply via email to

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