rfftnp

Purpose

Computes a real 1- or 2-D FFT. Returns the results in a packed format.

Format

y = rfftnp(x)
Parameters:

x (NxK real matrix or K-length real vector) – data

Returns:

y (Lx(M/2+1) matrix or (M/2+1)-length vector) – where \(L\) and \(M\) are the smallest prime factor products greater than or equal to \(N\) and \(K\), respectively.

Remarks

For 1-D FFT’s, rfftnp() returns the positive frequencies in ascending order in the first \(M/2\) elements, and the Nyquist frequency in the last element. For 2-D FFT’s, rfftnp() returns the positive and negative frequencies for the row dimension, and for the column dimension, it returns the positive frequencies in ascending order in the first \(M/2\) columns, and the Nyquist frequencies in the last column. Usually the FFT of a real function is calculated to find the power density spectrum or to perform filtering on the waveform. In both these cases only the positive frequencies are required. (See also rfft() and rfftn() for routines that return the negative frequencies as well.)

rfftnp() uses the Temperton prime factor FFT algorithm. This algorithm can compute the FFT of any vector or matrix whose dimensions can be expressed as the product of selected prime number factors. GAUSS implements the Temperton algorithm for any power of 2, 3, and 5, and one factor of 7. Thus, rfftnp() can handle any matrix whose dimensions can be expressed as:

\[2^p \times 3^q \times 5^r \times 7^s\]

For rows of the matrix :

\[p, q, r \geq 0\]

For columns of the matrix or length of a vector:

\[\begin{split}p > 0\\ q, r \geq 0\end{split}\]

For all dimensions:

\[s = 0 \text{ or } 1\]

If a dimension of x does not meet these requirements, it will be padded with zeros to the next allowable size before the FFT is computed.

rfftnp() pads matrices to the next allowable size; however, it generally runs faster for matrices whose dimensions are highly composite numbers, i.e., products of several factors (to various powers), rather than powers of a single factor. For example, even though it is bigger, a 33600x1 vector can compute as much as 20 percent faster than a 32768x1 vector, because 33600 is a highly composite number, \(2^6 \times 3 \times 5^2 \times 7\), whereas 32768 is a simple power of 2, \(2^{15}\). For this reason, you may want to hand-pad matrices to optimum dimensions before passing them to rfftnp(). The Run-Time Library includes two routines, optn() and optnevn(), for determining optimum dimensions. Use optn() to determine optimum rows for matrices, and optnevn() to determine optimum columns for matrices and optimum lengths for vectors.

The Run-Time Library also includes the nextn() and nextnevn() routines, for determining allowable dimensions for matrices and vectors. (You can use these to see the dimensions to which rfftnp() would pad a matrix or vector.)

rfftnp() scales the computed FFT by \(\frac{1}{L*M}\).