Help me with for loop
6 次查看(过去 30 天)
显示 更早的评论
Hi, I have matrix L with dimension 4680*640 and I need to decompose the matrix into 13 submatrix with dimension 360*640
I wrote matlab code but I got this error
" Index in position 2 exceeds array bounds (must not exceed 640). "
where n1=360 and n2=640.
My code is :
for i = 1:1:n1
for j =1:1:n2
L1(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(1*n2+1):1:(2*n2)
L2(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(2*n2+1):1:(3*n2)
L3(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(4*n2+1):1:(4*n2)
L4(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(5*n2+1):1:(5*n2)
L5(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(6*n2+1):1:(6*n2)
L6(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(7*n2+1):1:(7*n2)
L7(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(8*n2+1):1:(8*n2)
L8(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(9*n2+1):1:(9*n2)
L9(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(10*n2+1):1:(10*n2)
L10(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(11*n2+1):1:(11*n2)
L11(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(12*n2+1):1:(12*n2)
L12(i,j) = L(i,j);
end
end
for i = 1:1:n1
for j =(13*n2+1):1:(13*n2)
L13(i,j) = L(i,j);
end
end
0 个评论
采纳的回答
Stephen23
2020-11-4
编辑:Stephen23
2020-11-4
Rather than writing so much code and using numbered variables (very bad data design), you should just use mat2cell:
L = rand(4680,640); % fake data
idr = 360*ones(1,13);
idc = 640;
out = mat2cell(L,idr,idc);
size(out)
You can access the cell array contents using basic and very efficient indexing:
out{1} % the 1st matrix
out{2} % the 2nd matrix
etc.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!