calculate the mean of several columns
Mostra commenti meno recenti
Hi all, I am new to Matlab and I am struggling with this problem. I have a matrix with 112 columns and 100 rows. How can I calculate the mean of column 1-7 , 8-14, 15-21,...., 106-112 and put the a new matrix with 16 columns and 100 rows. I appreciate your help Sobhan
2 Commenti
Andrei Bobrov
il 5 Apr 2012
eg
A = rand(100,112);
fun = @(block_struct)mean(block_struct.data,2);
out = blockproc(A,[100,7],fun);
Walter Roberson
il 2 Dic 2015
KAUST comments "The best answer"
Risposta accettata
Più risposte (3)
Oleg Komarov
il 4 Apr 2012
A = rand(100,112);
B = reshape(mean(reshape(A.',7,[])),16,100).';
% Check
isequal(mean(A(2,8:14)),B(2,2))
Thomas
il 4 Apr 2012
You could reshape your matrix with 7 columns becoming 1 in the new matrix and taking the mean of each column
Eg.:
c=rand(4) % 4x4 matrix
d=reshape(c,[],2) % take two colm and form 1 total 2
p=mean(d) % mean of each columns
In your case
c=rand(100,112) % 4x4 matrix
d=mean(reshape(c,7,[])) % form 1600 columsns
final_out=(reshape(d,16,100)) % mean of each columns
3 Commenti
Oleg Komarov
il 4 Apr 2012
This solution will give 1 x 16, whereas the OP wants 100 x 16. The average is across blocks AND rows.
Thomas
il 4 Apr 2012
thanks, edited accordingly..
Oleg Komarov
il 4 Apr 2012
Now, your mean is across the first 7 rows (first column). You have to transpose and re-transpose back. Honestly, in this cases I think Waynes solution is best in terms or readability and performance.
Sobhan
il 5 Apr 2012
0 voti
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!