When I restart matlab, I get the correct errorbar plot output, but after running some GUI code, the errorbar function doesn't seem to work. Any thoughts on how I could be screwing with the way the function executes? I dont have anything named errorbar in the code.
Errorbar Plot
조회 수: 3 (최근 30일)
이전 댓글 표시
I am trying to use the errorbar function:
figure,errorbar(1:0.1:10,sin(1:0.1:10),0.1 * randn(length(1:0.1:10), 1))
and I get a plot that goes from (0,0) to (1,1) with the following data-points, respectively:
X=1, Y=0.84147, L=0.078467, U=0.078467
X=1.1, Y=0.89121, L=0.030862, U=0.030862
I would like the plot to look more like a sine wave with errorbars on the plot.
I realize this sounds confusing, so if you want to know anything else, please ask.
Thanks for reading!
Jake (R2011b)
답변 (1개)
Tom Lane
2012년 6월 12일
Since the points you mentioned appear to be the first two, I wonder if something is setting the axis limits and leaving them fixed. If you try "axis auto" or "clf" when you get in this state, does that improve things?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Errorbars에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!