
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Problem solved on the method of QR factorisation
Typology: Summaries
1 / 1
This page cannot be seen from the preview
Don't miss anything!

% Load the audio file [x, Fs] = audioread('guitar.wav'); % Define the filter coefficients num = [0.1, 0.4, 0.6, 0.4, 0.1]; den = [1, 0.06, 0.5, 0.01, 0.02]; % Filter the signal y = filter(num, den, x); % Play the filtered audio signal sound(y, Fs);