chauvenet(x)

版本 2.1.0.0 (633 字节) 作者: Rod Letchford
Applies Chauvenet criterion to reject outliers
624.0 次下载
更新时间 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 CenterMATLAB Answers 中查找有关 Octave 的更多信息

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.