function sound() changed behavior on matlab 2013a Mac
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
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
답변 (1개)
Shashank Prasanna
2013년 7월 28일
편집: Shashank Prasanna
2013년 7월 28일
1 개 추천
The sound function in R2013a now returns immediately without blocking. You can use playblocking instead.
This is captured in the release notes here:
댓글 수: 0
이 질문은 마감되었습니다.
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!