Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Extracting parts of matrix for sub matrices

1 visualización (últimos 30 días)
Akila Udage
Akila Udage el 6 de Abr. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I have 128 by 128 matrix. I want to extract 16 by 16 matrices from seperately.
it sould be like 1-16 colums with 1-16 rows and then 1-16 columns with 17-32 rows and so on for all 128 by 128 matrix. (using a loop)
i was thinking of a loop to get this done
k=15;
for i = 1:16:128
for j= 1:16:128
newsubMat = myMat(i:i+k,j:j+k);
UnifomityCalc = (max(max(newsubMat)))/(min(min(newsubMat))); % calculation for uniformity
newsubMat_UniformityVector(i,j) = UnifomityCalc; %trying to saving it for 8 by 8 matrix
Can you please help me with this?

Respuestas (1)

James Tursa
James Tursa el 6 de Abr. de 2020
E.g., to put them into a cell array
mat = your matrix
result = mat2cell(mat,repmat(16,8,1),repmat(16,8,1));
  1 comentario
Akila Udage
Akila Udage el 6 de Abr. de 2020
Editada: Akila Udage el 6 de Abr. de 2020
i was thinking of a loop to get this done
for i = 1:16:128
for j= 1:16:128
newsubMat = myMat(i:i+15,j:j+15);
UnifomityCalc = (max(max(newsubMat)))/(min(min(newsubMat))); % calculation for uniformity
newsubMat_UniformityVector(i,j) = UnifomityCalc; %trying to saving it for 8 by 8 matrix
can you pleas explain this ?

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by