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 (2026). errorbarlogy (https://ww2.mathworks.cn/matlabcentral/fileexchange/12449-errorbarlogy), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
创建方式
R2006a
兼容任何版本
平台兼容性
Windows macOS Linux类别
- MATLAB > Graphics > 2-D and 3-D Plots > Line Plots > Errorbars >
- MATLAB > Graphics > 2-D and 3-D Plots > Line Plots > Log Plots >
在 Help Center 和 MATLAB Answers 中查找有关 Errorbars 的更多信息
标签
| 版本 | 已发布 | 发行说明 | |
|---|---|---|---|
| 1.0.0.0 | Update funtion to work properly when plotting multiple errorbar plots with non errobar plots in one figure. |
