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

4 ビュー (過去 30 日間)
Miroslav Mitev
Miroslav Mitev 2018 年 3 月 2 日
コメント済み: Miroslav Mitev 2018 年 3 月 2 日
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.
  2 件のコメント
Birdman
Birdman 2018 年 3 月 2 日
Can you share all of your code?
Miroslav Mitev
Miroslav Mitev 2018 年 3 月 2 日
Here is an example:
while i<10
i=i+1;
C=1:i;
B(i,:)=C;
end

サインインしてコメントする。

採用された回答

Stephen23
Stephen23 2018 年 3 月 2 日
編集済み: Stephen23 2018 年 3 月 2 日
N = 10;
B = nan(N,N);
for k = 1:N
B(k,1:k) = 1:k;
end
Or use a cell array.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by