can someone explain this code?
Ältere Kommentare anzeigen
x1= (Subject5_leftfall_1(:,44)-Subject5_leftfall_1(10,44));
x1_Y=find(x1 >= mean(x1(10:300))+3*std(x1(10:300)));
plot(x1(x1_Y(1):length(x1)),'g')
S5_Peak_left_1= max(x1(x1_Y(1):x1_Y(1)+70));
S5_index_peak_left_1=find(x1(x1_Y(1):x1_Y(1)+70)==S5_Peak_left_1)
I don't know what x1_Y is trying to do. Also, I don't know what the last two lines of the code are trying to do.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Logical 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!