XCOV

From Jacket Wiki

Jump to: navigation, search
Back to Function List, Signal Processing Library

Cross-covariance

Usage

Jacket for M Language
    Supported Syntax
    
v=xcov(x,y)
v=xcov(x)
v = xcov(x,y,'option')
v = xcov(x,'option')
[c,lags]=xcov(x,y,maxlags,'option')
[c,lags]=xcov(x,y,maxlags)
[c,lags]=xcov(x,maxlags)
v = xcov(x,y,maxlags,'option')
    

GFOR Supported

No

GCOMPILE Supported

No

Types Supported

-  GDOUBLE   GSINGLE 

Types Not Supported

-  GLOGICAL   GINT32   GINT8   GUINT32   GUINT8   COMPLEX 

CPU usageJacket only contains GPU computing functions. To run functions on the CPU, try one of the MathWorks products:
http://www.mathworks.com/help/toolbox/signal/xcov.html
More Details
  • For xcov(x,y,maxlags), X, Y must be vectors.
  • The above routines are not currently supported for scalar y.
  • Of the possible values for 'option', 'coeff' is not currently supported.


See Also

XCORR, XCORR2, COV

Views