[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: |
Tue, 31 Jan 2006 12:46:08 +0100 |
User-agent: |
Mozilla Thunderbird 1.0.7 (X11/20051017) |
John B. Thoo ha scritto:
> Hello. To piggy back on this thread, I would like to plot
>
> x=-4:0.1:4;
> hold on
> plot (x, x.^2, "-r")
> plot (x, 0.75 * ((2 .* x).^2).^(1 / 3) + 0.5, "-k")
>
> with a heavier line width for the second graph only. How do I do this?
> It wasn't clear to me from the description below.
my choice would be to set
toggle_grace_use
before plotting and then edit the plot from grace,
You can also do
x = linspace(0,10,101) ' ;
plot(sin(x))
hold on
plot(cos(x))
__gnuplot_raw__ ('replot ''''notitle with lines lw 4\n')
although I don't really understand the ''''
see also:
http://wiki.octave.org/wiki.pl?action=browse&diff=1&id=CategoryFAQ
http://wiki.octave.org/wiki.pl?CategoryPlotting
ciao
Claudio
-------------------------------------------------------------
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
-------------------------------------------------------------