Filter löschen
Filter löschen

storing values from a for loop into a new variable

1 Ansicht (letzte 30 Tage)
Native
Native am 12 Dez. 2018
Beantwortet: Stephen23 am 12 Dez. 2018
for i = 1:length(row)
sol{i}
disp i
end
How can I store the values obtained (characters, not numbers) in a new variable?

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements 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