Borrar filtros
Borrar filtros

convert for loop to while

6 visualizaciones (últimos 30 días)
sam ham
sam ham el 9 de Nov. de 2016
Respondida: Adam el 9 de Nov. de 2016
Can someone help me convert this for loop to a while loop?
v=0;
for n=1:length(i);
v=v+i(n);
end

Respuestas (1)

Adam
Adam el 9 de Nov. de 2016
v = 0;
n = 1;
while n <= length( i )
v = v + i( n );
n = n + 1;
end
Quite why you would want to do this I don't know but anyway...

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by