I would like to filter out some vectors based on a percent of aggregate
Ältere Kommentare anzeigen
I would like to filter some time series based on their weight of the overall aggregate. The weights are to be calculated based on the derived aggregate/components of the second last element in each vector (x1=20, x2=2, x3=62) The end result would be to extract the complete time series vectors satisfying the threshold. I would also appreciate suggested improvements to the code:
Threshold = *.2*
x1=[5 10 20 15 40 20 25]';
x2=[8 25 15 50 41 2 15]';
x3=[32 42 30 52 33 62 77]';
x=[x1 x2 x3];
sumx=sum(x')';
sumx=[sumx sumx sumx];
perx=x./sumx
perx=perx(4,:);
perx =
0.2381 0.0238 0.7381
Here x2 should be deleted since it falls below the threshold and a new object containing x1 and x3 vectors should get created.
x=[x1 x3];
3 Kommentare
Image Analyst
am 22 Sep. 2013
Bearbeitet: Image Analyst
am 22 Sep. 2013
How does x2(end-1) being 2 fall below a threshold of 0.2? I don't follow the logic of the sumx and perx part. What's going on there?
Jeff
am 22 Sep. 2013
Image Analyst
am 22 Sep. 2013
Yes, see my new edited code below.
Akzeptierte Antwort
Weitere Antworten (1)
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!