How do I run parallel programs in Matlab?
2 次查看(过去 30 天)
显示 更早的评论
Hi I wish to run two loops independently. Specifically, one loop will be playing a sound at random intervals while another loop will be constantly looking for a voltage source from a button click. Is it possible to run two programs simultaneously?
Thanks.
0 个评论
回答(2 个)
E K
2012-7-31
i can not understand why you saw them as two different programs from your explanation it looks like you can run it as one but;
might help.
Jan
2012-7-31
You can start the sound from a TIMER, which modifies its interval in the callback. But looking for a button click is usually not done in a loop, but by the callback mechanism of the button. Clicking on the button triggers the event, not looking for the status of the button in an endless loop.
另请参阅
类别
在 Help Center 和 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!