Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
function sound() changed behavior on matlab 2013a Mac
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, I am using Matlab sound function to play demo sound. My code have a several sound functions one by one such as:
...
sound(sample1,fs1);
sound(sample2,fs2);
sound(sample3,fs3);
...
In previous matlab version, the sound played one by one from sample1 to sample3. but since we upgraded to 2013a on MAC OS X, when run the script, the matlab seems mixed them together or try to play them simultaneously via different processes. This make the results unpredictable. Certainly, you can add pause() or select one line by line and do evaluate by selection. But that is rather trouble.
Any suggestions to this will be appreciated.
0 Commenti
Risposte (1)
Shashank Prasanna
il 28 Lug 2013
Modificato: Shashank Prasanna
il 28 Lug 2013
The sound function in R2013a now returns immediately without blocking. You can use playblocking instead.
This is captured in the release notes here:
0 Commenti
Questa domanda è chiusa.
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!