Skip to content
Snippets Groups Projects
Commit e2e676f4 authored by YE Victor's avatar YE Victor
Browse files

Delete effet_delay_filtre_test.m

parent 8681cf6c
Branches
No related tags found
No related merge requests found
clear; clc;
% On charge le son
[x, Fe] = audioread('piano_chord.wav');
% Paramètres
t_delay = 0.25;
g = 0.9;
K = 10;
% Application de l'effet delay filtré
y = effet_delay_filtre(x, t_delay, g, K, Fe);
% Lecture et sauvegarde
soundsc(y, Fe);
audiowrite('piano_delay_filtre.wav', y, Fe);
% Affichage
figure;
plot((1:length(y))/Fe, y);
xlabel('Temps (s)');
ylabel('Amplitude');
title('Signal piano avec effet de delay filtré (K=10)');
grid on;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment