How to calculate moving standard deviation in a matrix?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi Guys, I have got a matrix :378x9. I need to calculate the moving standard deviation with a window size of 180(starting from row one). Can somebody help me please?
0 Commenti
Risposte (1)
Manolis Michailidis
il 13 Ott 2015
7 Commenti
Manolis Michailidis
il 13 Ott 2015
Modificato: Manolis Michailidis
il 13 Ott 2015
for kk=1:size(X,2) % kk is your column index
s(1:180,kk)=movingstd(X(1:180,kk),180,'f');
end
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!