From for to While loop
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello! Could someone please help me to convert this for loop to a while loop?
0 comentarios
Respuesta aceptada
Rik
el 24 de Nov. de 2020
Your original for-loop probably was incorrect. And why do you want a while loop? You already know how many iterations you want.
A = (1:10)';
B= rand(10,2);
C= A; C(:,2:3)= B;
Y= B(:,2);
X= B(:,1);
for i= 1:size(B,1)
% ^ are you sure that shouldn't be C instead?
C(i,4)= sin(C(i,3)/sin(C(i,2)));
end
In this case you can avoid the loop entirely:
C(:,4)=sin( C(:,3) ./ sin( C(:,2) ) );
And are you sure you mean this, and not this?
C(:,4)=sin( C(:,3) ) ./ sin( C(:,2) );
0 comentarios
Más respuestas (1)
Steve Eddins
el 24 de Nov. de 2020
Here is one way to convert a typical MATLAB for loop to a while loop:
for i = 1:N
...
end
i = 1;
while i <= N
...
i = i+1;
end
2 comentarios
Rik
el 24 de Nov. de 2020
Now deleted comment:
I tried that, but I couldn't get the whole matrix to show.
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!