public abstract class RealFloatFFT
extends java.lang.Object
The physical layout of the mathematical data d[i] in the array data is as follows:
d[i] = data[i0 + stride*i]The FFT (D[i]) of real data (d[i]) is complex, but restricted by symmetry:
D[n-i] = conj(D[i])It turns out that there are still n `independent' values, so the transformation can still be carried out in-place. However, each Real FFT method tends to leave the real and imaginary parts distributed in the data array in its own unique arrangment.
You must consult the documentation for the specific classes implementing RealFloatFFT for the details. Note, however, that each class's backtransform and inverse methods understand thier own unique ordering of the transformed result and can invert it correctly.
Constructor and Description |
---|
RealFloatFFT(int n)
Create an FFT for transforming n points of real, single precision data.
|
Modifier and Type | Method and Description |
---|---|
void |
backtransform(float[] data)
Compute the (unnomalized) inverse FFT of data, leaving it in place.
|
abstract void |
backtransform(float[] data,
int i0,
int stride)
Compute the (unnomalized) inverse FFT of data, leaving it in place.
|
protected void |
checkData(float[] data,
int i0,
int stride) |
void |
inverse(float[] data)
Compute the (nomalized) inverse FFT of data, leaving it in place.
|
void |
inverse(float[] data,
int i0,
int stride)
Compute the (nomalized) inverse FFT of data, leaving it in place.
|
float |
normalization()
Return the normalization factor.
|
float[] |
toWraparoundOrder(float[] data)
Return data in wraparound order.
|
abstract float[] |
toWraparoundOrder(float[] data,
int i0,
int stride)
Return data in wraparound order.
|
void |
transform(float[] data)
Compute the Fast Fourier Transform of data leaving the result in data.
|
abstract void |
transform(float[] data,
int i0,
int stride)
Compute the Fast Fourier Transform of data leaving the result in data.
|
public RealFloatFFT(int n)
protected void checkData(float[] data, int i0, int stride)
public void transform(float[] data)
public abstract void transform(float[] data, int i0, int stride)
public float[] toWraparoundOrder(float[] data)
public abstract float[] toWraparoundOrder(float[] data, int i0, int stride)
public void backtransform(float[] data)
public abstract void backtransform(float[] data, int i0, int stride)
public float normalization()
public void inverse(float[] data)
public void inverse(float[] data, int i0, int stride)