TF = isoutlier(A,method) on older MATLAB version (2011b) ?
Afficher commentaires plus anciens
Hello, I was wondering if there is any way of using "isoutlier" function in older version of matlab say MATLAB 2011b or MATLAB 2016a ??? This would reduce my working time to program for "Outlier identification" Thank You.
-Aditya Deshmukh
Réponses (2)
Star Strider
le 4 Août 2017
0 votes
For R2016a, if you have the Signal Processing Toolbox, you can use the hampel (link) function, introduced in R2015b.
R.A. Alemán
le 4 Mai 2018
Modifié(e) : R.A. Alemán
le 4 Mai 2018
This is how you could implement it for previous Matlab versions:
function [av]=Isoutlier(FF)
mk=median(FF);
M_d=mad(FF,1);
c=-1/(sqrt(2)*erfcinv(3/2));
smad=c*M_d;
tsmad=3*smad
av=(abs(FF-mk)>=tsmad);
end
5 commentaires
yang-En Hsiao
le 7 Avr 2019
What is the FF? can it be a value? or vector?
Walter Roberson
le 7 Avr 2019
FF should be a vector.
Anand Parikh
le 6 Déc 2019
Can you please explain this function? What is the threshold to identify outliers and how variable 'c' is defiened ?
Alexander Lyapin
le 8 Fév 2022
What is 'mad' function?
Walter Roberson
le 8 Fév 2022
I wonder if it was "mean absolute deviation"?
Catégories
En savoir plus sur Linear Model Identification dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!