How do I apply High-pass filter onto this recorded audio? Because we need to take the filer of a.

조회 수: 4 (최근 30일)
rec=audiorecorder(8000,8,1);
recordblocking(rec,20);
play(rec);
y = getaudiodata(rec);
N = length(y);
Fs = 9600;
dt = 1/Fs;
t = dt*(0:N-1)';
figure;
plot(t,y);
N = 8;
Fpass = 270;
Astop = 65;
Apass = 0.5;
Fs = le3;

답변 (1개)

Navya Seelam
Navya Seelam 2019년 12월 13일
Hi,
You can use Filter Designer app to design your filter and export it to workspace. Refer to the link below for understanding of Filter Designer.

카테고리

Help CenterFile Exchange에서 Audio Processing Algorithm Design에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by