narrowing down data sample

3 Ansichten (letzte 30 Tage)
Sehoon Chang
Sehoon Chang am 8 Apr. 2020
Kommentiert: Sehoon Chang am 8 Apr. 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 Kommentare
KALYAN ACHARJYA
KALYAN ACHARJYA am 8 Apr. 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 am 8 Apr. 2020
thanks!

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by