Errorbar vertical and horizontal

조회 수: 18 (최근 30일)
LorD1991
LorD1991 2017년 1월 10일
답변: Star Strider 2017년 1월 10일
Hi guys,
i tried to plot some errorbars using the following code:
x = [1 2 3 4 5 6 7 8 9 10];
y = [1 2 3 4 5 6 7 8 9 10];
err = [1 2 3 1 2 3 1 2 3 1];
errorbar (x,y,XData,'err',YData,'err',marker,'o')
But matlab says that XData is an undefined function.
Can someone help me please with my plots?

답변 (1개)

Star Strider
Star Strider 2017년 1월 10일
It probably says that ‘XData’ is an ‘undefined funciton or variable’. You need to define it.
I doubt that is the problem, however. Your syntax for the errorbar (link) function (in the R2016b documentation) is wrong. Please re-read the documentation and re-write your errorbar call.

카테고리

Help CenterFile Exchange에서 Errorbars에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by