chauvenet(x)

バージョン 2.1.0.0 (633 Bytes) 作成者: Rod Letchford
Applies Chauvenet criterion to reject outliers
ダウンロード: 638
更新 2018/7/11

ライセンスの表示

A little program that inputs a column or row vector of data and outputs: a column vector of data to which Chauvenet's criterion has been applied and outliers rejected; the rejected outliers; and, the indexes of the rejected outliers.

引用

Rod Letchford (2024). chauvenet(x) (https://www.mathworks.com/matlabcentral/fileexchange/60248-chauvenet-x), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R10
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersOctave についてさらに検索
タグ タグを追加

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
2.1.0.0

Changed line 17 to "if abs(tau(n)) < chauv" to check for the lower bound as well.

2.0.0.0

Fixed one line of syntax for MATLAB

1.0.0.0

value of tau needs to be absolute: tau = abs((x.-mean(x))./std(x));

Added link to reference on which function is based.