How to create matrix with Standard deviation from every 5 columns of another matrix?

조회 수: 1 (최근 30일)
I have matrix 100x20, how to create a new matrix with SD of evey 5 columns from the first one, to have 100x4 new matrix.

채택된 답변

the cyclist
the cyclist 2021년 9월 30일
Here is one way:
% Pretend data [Use your actual data instead]
M = randn(100,20);
% Reshape into the slices needed for standard deviation
M3 = reshape(M,100,5,4);
% Take standard deviation along dimension 2
S3 = std(M3,0,2); % FYI, the 0 here means "use sample, not population std dev". (See documentation.)
% Reshape back to 2-d
S = reshape(S3,100,4);

추가 답변 (1개)

Walter Roberson
Walter Roberson 2021년 9월 30일
M = rand(100,20);
Mstd5 = reshape(std(reshape(M, size(M,1), 5, []), [], 2), size(M,1), []);
size(Mstd5)
ans = 1×2
100 4

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by