i want to store all iteration value in the variable.

every time the loop are executing then the previous value are overwritten. so please give valuable solution.

 Akzeptierte Antwort

madhan ravi
madhan ravi am 30 Dez. 2018
Here is an example to avoid overwriting in a loop:
c=zeros(1,10); % preallocate for speed and efficiency
for i = 1:numel(c)
c(i)= 2^(i);
end
c

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by