This repository has been archived on 2023-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
ece45-project/src/play_continuous.m
Darell Chua Yun Da 6c7aa76b62 Continuous Replay and Filter
Continuous Replay and Filter. Added a test main for people to easily test their filters.
2021-12-02 13:44:57 +08:00

10 lines
286 B
Matlab

function play_continuous(wave, fs, time)
%play_continuous: Darell Continuously Playing
soundfile = audioplayer(wave,fs);
countmax = time / (length(wave) / fs);
for count = 0:1:countmax %change to counts/while play button active
playblocking(soundfile);
end
end