Filter löschen
Filter löschen

How can I save vector values that changes its size each iteration?

2 Ansichten (letzte 30 Tage)
I have the following type of code:
while i<10
i=i+1;
while ...
C=...
end
B(i,:)=C;
end
where C is 1-row vector and B is supposed to be 10-row matrix with each row equal to C from iterations 1:10. The problem is that C changes its size each iteration and I am not sure how to save all its values in form of a matrix.

Akzeptierte Antwort

Stephen23
Stephen23 am 2 Mär. 2018
Bearbeitet: Stephen23 am 2 Mär. 2018
N = 10;
B = nan(N,N);
for k = 1:N
B(k,1:k) = 1:k;
end
Or use a cell array.

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by