MatLabをrunする際、一定の速度で走らせることはできますか?
2 views (last 30 days)
Show older comments
例えば1行あたり10msごとにコマ送りするように実行(run)させることはできますか?
Accepted Answer
Hernia Baby
on 11 May 2021
pause関数を使うのはいかがでしょうか? https://jp.mathworks.com/help/matlab/ref/pause.html
0 Comments
More Answers (1)
Shunichi Kusano
on 12 May 2021
念のため補足いたしますとタイマーという機能もあります。
pauseですと10msの空白が約束されますが、処理時間分のバッファが生じるので、実行周期は10ms+αとなります。
が、timer使うと10msごとの実行が可能です。ご参考までに。
0 Comments
See Also
Categories
Find more on ループと条件付きステートメント in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!