help-octave
[Top][All Lists]
Advanced

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

Re: how to increase line width?


From: Claudio Belotti
Subject: Re: how to increase line width?
Date: Mon, 30 Jan 2006 15:33:29 +0100
User-agent: Mozilla Thunderbird 1.0.7 (X11/20051017)

Claudia,
I assume you want to change linewidth when you plot to a file

if you use octave + gnuplot
octave:1> x = rand(10,1);
octave:2> plot(x)
octave:3> __gnuplot_set__ terminal postscript lw 5
octave:4> __gnuplot_set__ output "plot.ps"
octave:5> replot

another possibility is to use grace

octave:1> toggle_grace_use
Use Grace: on
octave:2> x = rand(10,1);
octave:3> plot(x)

this is a nice way to edit a single plot (colors,width,labels etc.) in a
very accurate way (e.g. for a publication)

ciao
Claudio


on 30/01/2006 11:12 address@hidden wrote:
> Dear ladies and gentlemen!
> I want to increase the line width while using the plot command.        
> I tried e.g: plot(data, 'LineWidth',2).
> But it does not work.
> I want to increase also the label size an axis-width.
> Can anybody help me?
> 
> Thank you very much
> 
> 
> Claudia



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

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