can someone please explain what is lag in matlab built in function xcov ? Thanks
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
please see above, thanks
0 Kommentare
Antworten (1)
Prajit T R
am 1 Mär. 2018
[c,lags] = xcov(x,y,maxlags) where x and y are length m vectors, returns the cross-covariance sequence in a length 2*maxlags+1 vector c. lags is a vector of the lag indices where c was estimated, that is, [-maxlags:maxlags]. These indices can be useful when you wish to plot the covariance estimates. For example: stem(lags,c)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Descriptive Statistics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!