Solve matrix reshape error
Show older comments
Hello,
I have a 6 x 1200 matrix. For each row, I want to sum columns 1:600 and 601:1200 using the code below.
sum_dGwdt_gwd = squeeze(sum(reshape(sum_dGwdt_gwd,size(sum_dGwdt_gwd,1),600,[]),2)/50);
However, I keep getting the following error.
Error using reshape
Product of known dimensions, 3600, not divisible into total number of elements, 6.
It would be helpful if anyone can point out what I'm doing wrong.
Thank you.
1 Comment
Elizabeth Yeap
on 16 Dec 2019
Edited: Elizabeth Yeap
on 16 Dec 2019
Answers (1)
KSSV
on 16 Dec 2019
A = rand(6,1200) ;
iwant = [sum(A(:,1:600),2) sum(A(:,601:end),2)] ;
1 Comment
Elizabeth Yeap
on 16 Dec 2019
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!