How do I split and assign a matrix sized 1880,2 into N smaller matrices (or a struct holding the matrices) where N matrices have 5 elements of dim1,dim2, the next five and so on (incremental looping)?

1 次查看(过去 30 天)
temp(1880,2)
split 'temp' into 376 equal sized matrices temp_n(5,2), where N = 1,2,3.....376
temp_1 = (1:5,1:5);
temp_2 = (6:10,6:10);
temp_3 = (11:15,11:15);
::::
temp_N = (end-5:end,end-5:end);
Is there a dynamic way to name the matrices of type 'temp_n'? Using sprintf?
Is there a loop or vectorised way to do this?

回答(1 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2021-4-2

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by