Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How to find the maximum after every 5 rows in a matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
dpb
el 1 de Jul. de 2014
Editada: dpb
el 1 de Jul. de 2014
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 comentarios
dpb
el 1 de Jul. de 2014
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,[]);
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!