Moving standard Deviation and Average
조회 수: 6 (최근 30일)
이전 댓글 표시
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
채택된 답변
Image Analyst
2023년 4월 28일
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
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!