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

Delete SAR3Q4.m

parent fcc2ade1
No related branches found
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