XCORR

From Jacket Wiki

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

Cross-correlation

Usage

Jacket for M Language
    Supported Syntax
    
c=xcorr(x,y)
c=xcorr(x)
c = xcorr(x,y,'option')
c=xcorr(x,'option')
c=xcorr(x,y,maxlags,'option') % see notes
c=xcorr(x,maxlags,'option')  % see notes
c=xcorr(x,y,maxlags)
c=xcorr(x,maxlags)
    

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/xcorr.html

Notes

  • Currently, the argument 'option' does not take the value 'coeff'.
  • The argument 'maxlags' needs to be less than length(X).

See Also

XCOV, XCORR2, COV

Views