Borrar filtros
Borrar filtros

How do we extract a 2D matrix out of a 2D matrix?

3 visualizaciones (últimos 30 días)
BBB
BBB el 11 de Nov. de 2019
Comentada: BBB el 12 de Nov. de 2019
I have a 2D matrix of 600x1000 and I want to create a nested loop to extract 51x51 matrix data. How can we do that? Thanks.

Respuestas (1)

Walter Roberson
Walter Roberson el 12 de Nov. de 2019
for row_index = 1 : number_of_rows_to_transfer
for column_index = 1 : number_of_columns_to_transfer
TheOutputArray(row_index, column_index) = TheInputArray(row_index+row_offset, column_index+column_offset);
end
end
  1 comentario
BBB
BBB el 12 de Nov. de 2019
Hi Walter,
Is this right?
for hh = 1:10000
for pp = 1:600
u(hh,pp)= im(1:51,1:51);
end
end

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by