フィルターのクリア

storing values from a for loop into a new variable

1 回表示 (過去 30 日間)
Native
Native 2018 年 12 月 12 日
回答済み: Stephen23 2018 年 12 月 12 日
for i = 1:length(row)
sol{i}
disp i
end
How can I store the values obtained (characters, not numbers) in a new variable?

採用された回答

Stephen23
Stephen23 2018 年 12 月 12 日
N = numel(row);
C = cell(1,N);
for k = 1:N
C{k} = sol{k}
end
Or without a loop:
C = sol(1:N)

その他の回答 (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