help-octave
[Top][All Lists]
Advanced

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

Re: How work the plot properties if errorbar is used?


From: Andy Buckle
Subject: Re: How work the plot properties if errorbar is used?
Date: Tue, 1 Feb 2011 09:25:22 +0000

> I try to plot data with errorbars like I did in the following example for
> the normal plot (but without the bars):
>         plot(x,y,'-*r','markersize',1.2)
> but if I write:
>       errorbar(x,y,ly,uy,"~","-*r",'markersize',1.2)
> I get an error message:
>     error: Invalid call to __errplot__. Correct usage is:
>     -- Function File: H = __errplot__ (FSTR,P, ...)
>
> but I don't understand this message and I hope someone will help me
> THANKS ;)
>
> Ursina

How about

errorbar(...)
hold on
plot(...)

Then you can control the plot and errorbar styles separately. It
should be easier.

-- 
/* andy buckle */


reply via email to

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