barerrorbar(varargi​n)

Create a bar plot with error bars.

現在この提出コンテンツをフォロー中です。

Barerrorbar() creates a bar plot with error bars. Although, not the first function to accomplish this task, barerrorbar() differs in that it directly calls the MATLAB functions bar() and errorbar() so that the options of both functions are preserved. For example:
x = 0.2*randn(3,4,100) + 1;
xMeans = mean(x,3);
xMeansL = repmat(3*0.2/10,3,4);
xMeansU = repmat(4*0.2/10,3,4);
barerrorbar({3:5,xMeans,'m'}, {repmat((3:5)',1,4),...
xMeans, xMeansL,xMeansU,'bx'});

引用

Kenneth Morton (2026). barerrorbar(varargin) (https://jp.mathworks.com/matlabcentral/fileexchange/9541-barerrorbar-varargin), MATLAB Central File Exchange. に取得済み.

謝辞

ヒントを得たファイル: BarsWithError

ヒントを与えたファイル: superbar

カテゴリ

Help Center および MATLAB AnswersErrorbars についてさらに検索

一般的な情報

MATLAB リリースの互換性

  • すべてのリリースと互換性あり

プラットフォームの互換性

  • Windows
  • macOS
  • Linux
バージョン 公開済み リリース ノート Action
2.0.0.0

Fix a minor bug concerning row vector inputs.

1.0.0.0

Updated the file to remove M-Lint messages.