errorbarlogy

버전 1.0.0.0 (1.56 KB) 작성자: Zhang Jiang
errorbar plot for log y scale
다운로드 수: 3.4K
업데이트 날짜: 2006/10/5

라이선스 보기

ERRORBARLOGY Show the vertical errorbar line in log y scale plot when the data error is larger than data itself.

Matlab buidin ERRORBAR does not plot the vertical errobar line in a log y scale plot when data error is larger than data itself. See the screenshot for comparion.

Example:
x = logspace(1,3,20);
y = 5*(1 + 0.5*(rand(1,20)-0.5)).*x.^(-2);
y_err(1:13) = y(1:13)/2;
y_err(14:20) = y(14:end)*5;
errorbar(x,y,y_err,'o');
errorbarlogy;

인용 양식

Zhang Jiang (2024). errorbarlogy (https://www.mathworks.com/matlabcentral/fileexchange/12449-errorbarlogy), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2006a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Errorbars에 대해 자세히 알아보기
도움

받음: errorbarlogx.m

줌: superbar

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Update funtion to work properly when plotting multiple errorbar plots with non errobar plots in one figure.