gpt4 book ai didi

matlab - MATLAB:函数结束后,让audioplayer()继续播放

转载 作者:行者123 更新时间:2023-12-02 22:42:29 26 4
gpt4 key购买 nike

我正在使用使用以下子功能的代码:

function playTone (duration, toneFreq)
% Generate a tone

samplesPerSecond = 44100; % the bit rate of the tone
y = sin(linspace(0, duration * toneFreq * 2 * pi, round(duration * samplesPerSecond))); % the equation of the sound wave
player = audioplayer(y, samplesPerSecond); % create an audio object from the sound wave at the specified bit rate
playblocking(player) % play the audio, blocking control until the sound completes

例如,使用以下命令调用此函数:
playTone(4, 400);

这会导致声音以400Hz播放,持续4秒钟。

问题是,函数playblocking()会限制控制,直到声音完成为止。另一种方法是使用play(),这意味着根本没有声音播放(因为一旦函数完成声音就会停止)。

由于我的MATLAB版本中存在一个已知的错误,因此我无法使用sound()函数...如果声音是在子函数中创建的,那么如何使audioplayer()函数在不控制系统的情况下播放声音?

最佳答案

您可以将player变量定义为全局变量。只需将此行放在函数的开头:

global player

尽管这不是一种好的编程习惯,但它可能对您有用。

关于matlab - MATLAB:函数结束后,让audioplayer()继续播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9706224/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com