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

Upload New File

parent 85a65305
Branches
No related tags found
No related merge requests found
load('signal_excitation.mat'); % xe1, xe2, Fe
x = xe1; % On choisit xe1
x = x ; % Normalisation
load('empreinte_ac'); % fe
ys = simule_piece(x, fe); % Convolution avec la vraie empreinte
% Corrélation
[h_est, lags] = xcorr(ys, x, 'none');
t = lags / fe;
% Affichage amplitude réelle
figure;
plot(t, h_est);
xlabel('Temps (s)');
ylabel('Amplitude (V²)');
title('Réponse impulsionnelle estimée de la pièce (non normalisée)');
grid on;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment