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

1 view (last 30 days)
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.

Accepted Answer

the cyclist
the cyclist on 30 Sep 2021
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);

More Answers (1)

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

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!