Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
How to find the maximum after every 5 rows in a matrix?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi all, I have a matrix of size 525600x23 and I would like to find the maximum value after every 5 rows, so that my output matrix will have the size 105120x23.
I used the following code (because it worked with finding the Mean) but the output dimension for this case gave me 5x105120x23. However I wish to actually get 105120x23 size only.
Answer = squeeze(nanmax(reshape(Mymatrix,[5,105120,23]),1));
Any help is appreciated.
Thank you!
댓글 수: 0
답변 (1개)
dpb
2014년 7월 1일
편집: dpb
2014년 7월 1일
nGrp=5; % grouping size
mx=reshape(nanmax(reshape(x,nGrp,[])),size(x,1)/nGrp,[]);
The key is to remember storage order is column major. Try the following at the command line to visualize...
x=rand(8,3);
nGrp=2;
Now apply the above and look at x and mx. If you still don't follow the reason it works, break down the expression and do the two pieces individually looking at the result of each step.
댓글 수: 3
dpb
2014년 7월 1일
The key to these kinds of problems is to work on small subsets you can visualize at the command line...
Sorry, I was typing at the command line and missed the divisor to get the number of rows divided by the grouping constant...and was thinking of the transposed x instead of original, too. Edited Answer as well.
mx=reshape(nanmax(reshape(x,nGrp,[])),size(x,1)/nGrp,[]);
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!