narrowing down data sample

3 vues (au cours des 30 derniers jours)
Sehoon Chang
Sehoon Chang le 8 Avr 2020
Commenté : Sehoon Chang le 8 Avr 2020
Hi all,
I have set restrictions to sample the outlier data and wish to narrow down outliers samples.
Three restrictions that i have set are:
  1. zscore above 3
  2. W(idx) above 15
  3. three consecutive W(idx) having same value.
Values that meet all three resitrictions shall be classified as outliers.
idx is the time variable and the W is the result.
I came up with this equation, but the result of what i wish to get is only upto the second restriction right.
please help me out how to restructure the last restriction correctly.
Thanks all.
stdDev = std(W(idx))
meanValue = mean(W(idx))
zFactor = 3
outliers = find((abs(W(idx)-meanValue) > (zFactor * stdDev)) & (W(idx) > 15) & (W(idx) == W(idx-1) == W(idx-2) == (W(idx-3))))
  2 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 8 Avr 2020
It might works, if you check the conecutives same values in fifferent assigment (line). Later you can easily combine them.
There the multiple answered threads to check the cosecutivs numbers, you may look at diff function
Sehoon Chang
Sehoon Chang le 8 Avr 2020
thanks!

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by