- x - data points for the x coordinate (in this case rate perhaps)
- y - data points for the y coordinate (in this case konc (conc?))
- err - error bar lengths (assuming you want symmetric bars)
How to use errorbar
조회 수: 2 (최근 30일)
이전 댓글 표시
Sebastian Markussen
2017년 11월 9일
편집: Krishna Bindumadhavan
2017년 11월 22일
I have a script with the following data Data2=importdata('MichaelisMenten.txt'); Conc=Data2(:,1); rate=Data2(:,2); spred=Data2(:,3); w=1./(spred.*spred); ' plot(rate,konc); errorbar(??);
I need make vertical segment at each measurment on my plot, which showes plus and minus spread (ussing errorbar). But i cant figure out what to put in the errorbar-code
댓글 수: 0
채택된 답변
Krishna Bindumadhavan
2017년 11월 22일
편집: Krishna Bindumadhavan
2017년 11월 22일
The syntax that you are probably looking for is : errorbar(x,y,err) , where :
The documentation gives a more exhaustive description of the various options that are available. You can take a look at the error bar documentation here: https://www.mathworks.com/help/matlab/ref/errorbar.html .
댓글 수: 0
추가 답변 (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!