Correlation sur matlab

Fermé
immi - 2 mars 2008 à 09:10
 PELLETIER - 19 mars 2008 à 11:02
Bonjour,
svp j'ai besoin une programmation sur matlab qui me permet d'etudier la correlation entre deux variable X et Y et de tracer la courbe associé

1 réponse

La fonction MatLab est la fonction xcorr(x,y)
pour tracer une courbe:

[Ycorel, Xdecalage]=xcorr(x,y);
plot(Xdecalage,Ycorel)

amuse toi bien!
18