errorbarlogy

バージョン 1.0.0.0 (1.56 KB) 作成者: Zhang Jiang
errorbar plot for log y scale
ダウンロード: 3.5K
更新 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 (2025). errorbarlogy (https://jp.mathworks.com/matlabcentral/fileexchange/12449-errorbarlogy), MATLAB Central File Exchange. に取得済み.

MATLAB リリースの互換性
作成: R2006a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersErrorbars についてさらに検索
謝辞

ヒントを得たファイル: 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.