help-octave
[Top][All Lists]
Advanced

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

Re: Line thickness


From: Søren Hauberg
Subject: Re: Line thickness
Date: Fri, 03 Jun 2005 13:14:06 +0200
User-agent: Mozilla Thunderbird 1.0.2 (X11/20050404)

Hi
This seems to be too much trouble to be worth the hassle :-(
It wasn't really something I *needed*, but it would have been nice.
Anyway, thanks for the answers (all of you)

/Søren

Jonathan Stickel wrote:
Unfortunately it is not simple to do. As far as I know, you must resort to low level gnuplot commands. Something like

 > data = [x,y];
 > gplot data with lines linewidth 3

should work, but it does not in Octave 2.1.x. I've been told it works in 2.9.x. Instead, you need to do the following:

 > data = [x,y];
 > save -text "/tmp/data" data
 > graw("plot '/tmp/data' with lines linewidth 3 \n")

HTH,
Jonathan


Søren Hauberg wrote:

Hi
Can I set the thickness of lines when I'm plotting?

/Søren



-------------------------------------------------------------
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
-------------------------------------------------------------





-------------------------------------------------------------
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
-------------------------------------------------------------




-------------------------------------------------------------
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]