I don't want to draw the lines between the errorbar
조회 수: 3 (최근 30일)
이전 댓글 표시
hello everyone,
I am drawing a graph with the errorbar in the range of 2 sigma values. But I don't want to draw the lines between them. How can I do it?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1101540/image.jpeg)
errorbar(A_T,ce_mean,2*std)
답변 (1개)
Dyuman Joshi
2022년 8월 18일
편집: Dyuman Joshi
2022년 8월 19일
%random data
x = 1:10:100;
y = [20 30 45 40 60 65 80 75 95 90];
err = [4 3 5 3 5 3 6 4 3 3];
errorbar(x,y,err,'.', 'MarkerEdgeColor','red')
댓글 수: 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!