pdf print
Ben Abbott
bpabbott at mac.com
Wed Feb 27 11:10:40 CST 2008
On Wednesday, February 27, 2008, at 10:22AM, "Ruben J. Moor" <ruben.moor at gmx.de> 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
More information about the Help-octave
mailing list