increasing spdiags matrix at each iteration
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I was wondering if someone has an idea how to horzcat at each iteration spdiag matrix? Thanks!!!
ot = ones(N,1);
N=50;
for i=1:10
if i=1
A2 = spdiags([ot ot -ot -ot],[0 N -1 N-1],N,N*2);
else
%%desired result
%%for i=2 it should be A2 = horzcat(A2,A2);
% for i=3 A2 = horzcat(A2,A2,A2) and so on;
end
end
댓글 수: 0
답변 (1개)
James Tursa
2017년 5월 19일
편집: James Tursa
2017년 5월 19일
A2 = repmat(A2,1,i);
But it seems to me that you may be running into memory problems with this, since A2 is recursively using the last A2 with repmat to build the new A2.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!