How do we extract a 2D matrix out of a 2D matrix?
1 view (last 30 days)
Show older comments
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.
0 Comments
Answers (1)
Walter Roberson
on 12 Nov 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
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!