IFFTSHIFT

From Jacket Wiki

Jump to: navigation, search
Back to Function List

Inverse FFT shift

Usage

Jacket for M Language
    Supported Syntax
    
Y = ifftshift(X)
Y = ifftshift(X,dim)
    

GFOR Supported

Yes

GCOMPILE Supported

No

Types Supported

-  GDOUBLE   GSINGLE   COMPLEX 

Types Not Supported

-  GLOGICAL   GINT32   GINT8   GUINT32   GUINT8 

CPU usageJacket only contains GPU computing functions. To run functions on the CPU, try one of the MathWorks products:
http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ifftshift.html
More Details
  • Use the standard MATLAB conversions to return data to the CPU (see below).
  • Examples Usage:
A = gint32(-5:5);
B = A + 3;
C = int32(B); % bring back to CPU

Notes

  • Supports up to 4 dimensions only.

See Also

FFT, FFT2, FFTN, FFTSHIFT, IFFT, IFFT2

Views
Personal tools