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

Upload New File

parent 386a1e85
No related branches found
No related tags found
No related merge requests found
load('signal_excitation.mat');
xe1 = xe1 / max(abs(xe1));
xe2 = xe2 / max(abs(xe2));
[acor1, lag1] = xcorr(xe1, 'coeff');
[acor2, lag2] = xcorr(xe2, 'coeff');
figure;
subplot(2,1,1);
plot(lag1, acor1);
title('Autocorrélation de xe1');
xlabel('Décalage'); ylabel('Corrélation');
subplot(2,1,2);
plot(lag2, acor2);
title('Autocorrélation de xe2');
xlabel('Décalage'); ylabel('Corrélation');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment