Running movie file simultaneously to other code
2 ビュー (過去 30 日間)
古いコメントを表示
I'd like to run a small movie file to simulate a fancy "processing bar" while performing .m code uninterrupted. Clearly I know how to run a movie file first and once that is completed run the .m code, but how can these be run simultaneously to show this movie while the program is running?
Thanks,
Kevin
0 件のコメント
回答 (2 件)
Sean de Wolski
2012 年 1 月 5 日
Are you looking for something like a waitbar?
doc waitbar
If not, please clarify your question.
2 件のコメント
Sean de Wolski
2012 年 1 月 5 日
You could use a timer to run a waitbar while the other stuff is running.
Walter Roberson
2012 年 1 月 5 日
You cannot do that in MATLAB, except by using system() to start a new process that does the playing (and then you have problems with synchronization.)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Dialog Boxes についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!