Can you try to solve this question ( I am stuck )
조회 수: 2 (최근 30일)
이전 댓글 표시
A recursive implementation of reverberation is given by (2.103) which is given below y[n] = x[n] + ay[n − D], where D = τFs is the delay in sampling interval given the delay τ in seconds and sampling rate Fs and a is an attenuation factor. To generate digital reverberation we will use the sound file handel which is recorded at Fs = 8192 samples per second. (See Problem 6 for using this file.)
(a) For τ = 50 ms and a = 0.7, obtain a difference equation for the digital reverberation and process the sound in handel. Comment on its audio quality
Hello i have this question and i am stuck in a part where i can't form the equation i am looking for someone to help me out
load handel.mat
Fs=8192;
tao=milliseconds(50);
alpha=0.7;
filename = 'handel.wav';
audiowrite(filename,y,Fs);
d=tao*Fs;
x=transpose(y)
---then??
sound(y,Fs)
댓글 수: 1
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!