QR factorisation example, Summaries of Linear Algebra

Problem solved on the method of QR factorisation

Typology: Summaries

2023/2024

Uploaded on 09/22/2024

pavithra-s-r
pavithra-s-r 🇮🇳

2 documents

1 / 1

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
% 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);

Partial preview of the text

Download QR factorisation example and more Summaries Linear Algebra in PDF only on Docsity!

% 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);