Info
この質問は閉じられています。 編集または回答するには再度開いてください。
for loop become to while loop
2 ビュー (過去 30 日間)
古いコメントを表示
this is my code , but it's for loop, I want to become to "while loop"
How to do?
pleas teach me , thank you!
for im=idxip(a):idxip(a+1)
subplot(1,1,1);
imshow(uint8(xi(:,:,:,im)));
title('video','Fontsize',22);
%pause(1);
drawnow;
end
0 件のコメント
回答 (2 件)
Azzi Abdelmalek
2012 年 8 月 6 日
編集済み: Azzi Abdelmalek
2012 年 8 月 6 日
im=idxip(a)
while im<=idxip(a+1)
%----your code----------------
subplot(1,1,1);
imshow(uint8(xi(:,:,:,im)));
title('video','Fontsize',22);
%pause(1);
drawnow;
%------------------------------
im=im+1
end
% while the condition is checked, the program will redo the loop
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!