Move to next and previous iteration in for loop on button press
古いコメントを表示
Hello,
I am playing a video inside a for loop (for frame = startframe:endframe) and the image updates for each iteration in the for loop.
I want the user to be able to move forward and backward inside the loop depending on which button is pressed. Say "left arrow key" moves to previous iteration and "right arrow key" moves to next iteration.
How can I do this?
Thanks!
回答 (1 件)
%Right
for i = 1:10
fprintf('%d\n',i)
end
% Left
for i = 10:-1:1
fprintf('%d\n',i)
end
3 件のコメント
Konvictus177
2021 年 10 月 13 日
編集済み: Konvictus177
2021 年 10 月 13 日
KSSV
2021 年 10 月 13 日
When you press the button get the values or some number and then decide whether to go left or right.
Konvictus177
2021 年 10 月 13 日
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!