help-octave
[Top][All Lists]
Advanced

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

Re: axes labels on errorbar plots


From: Quentin Spencer
Subject: Re: axes labels on errorbar plots
Date: Thu, 20 Nov 2003 18:43:05 -0600
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.1) Gecko/20031114

Putting the xlabel and ylabel commands after the errorbar command fixes the problem.

Michael B Krypel wrote:

When plotting with the errorbar function, the axes labels are not
displayed at all. Any suggestions?
Thanks!

here's a sample script:
#!/usr/bin/octave -q
x=1:100;
y=3.*x+4;
sigy=sqrt(y);
xlabel('The X-Axis');
ylabel('The Y-Axis');
errorbar(x,y,sigy)
#end of script




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