/usr/share/freemat/help/text/fftshift.mdc is in freemat-help 4.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FFTSHIFT FFTSHIFT Shift FFT Output
Usage
The fftshift function shifts the DC component (zero-frequency)
of the output from an FFT to the center of the array. For vectors
this means swapping the two halves of the vector. For matrices,
the first and third quadrants are swapped. So on for N-dimensional
arrays. The syntax for its use is
y = fftshift(x).
Alternately, you can specify that only one dimension be shifted
y = fftshift(x,dim).
|