Moving standard Deviation and Average
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jana Sarran
am 28 Apr. 2023
Kommentiert: Jana Sarran
am 29 Apr. 2023
how would I go about finding the moving standard deviation and moving average for every 15 rows of the SPEED COLUMN ONLY in the following matrix and display the results in another table?
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 28 Apr. 2023
If you want to move in "jumps" of 15 rows at a time, then you can either subsample the output of those functions or use blockproc in the Image Processing Toolbox. Or you can use a simple for loop:
% Compute speed over "blocks" of 15 elements
speed = t.Speed; % Get speed values from your table.
index = 1;
for k = 1 : 15 : numel(speed)
meanSpeeds(index) = mean(speed(k : k + 14));
index = index + 1;
end
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays 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!