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

回答(1 个)

James Tursa
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.

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by