chauvenet(x)

Version 2.1.0.0 (633 octets) par Rod Letchford
Applies Chauvenet criterion to reject outliers
638 téléchargements
Mise à jour 11 juil. 2018

Afficher la licence

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.

Citation pour cette source

Rod Letchford (2024). chauvenet(x) (https://www.mathworks.com/matlabcentral/fileexchange/60248-chauvenet-x), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R10
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Octave dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
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.