From help-octave-request at bevo dot che dot wisc dot edu Thu Nov 20 16:54:07 2003 Subject: axes labels on errorbar plots From: Michael B Krypel To: Date: Thu, 20 Nov 2003 16:26:08 -0600 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 -------------------------------------------------------------