메소드 | 설명 | |
---|---|---|
FFTComplex ( Primitive real, Primitive imaginary ) : Primitive |
Create an array of complex values from arrays of real and imaginary parts.
|
|
FFTForward ( Primitive real ) : Primitive |
Compute a FFT (Fast Fourier Transform).
|
|
FFTImaginary ( Primitive complex ) : Primitive |
Get the imaginary part of an array of complex data.
|
|
FFTInverse ( Primitive complex ) : Primitive |
The inverse of a FFT (Fast Fourier Transform).
|
|
FFTReal ( Primitive complex ) : Primitive |
Get the real part of an array of complex data.
|
public static FFTComplex ( Primitive real, Primitive imaginary ) : Primitive | ||
real | Primitive | An array of real data. |
imaginary | Primitive | An array of imaginary data. |
리턴 | Primitive |
public static FFTForward ( Primitive real ) : Primitive | ||
real | Primitive | An array of real values to calculate the FFT from. |
리턴 | Primitive |
public static FFTImaginary ( Primitive complex ) : Primitive | ||
complex | Primitive | An array of complex data (real amplitude and imaginary phase). /// For each complex pair the index is the real part and the value is the imaginary part. |
리턴 | Primitive |
public static FFTInverse ( Primitive complex ) : Primitive | ||
complex | Primitive | An array of complex data (real amplitude and imaginary phase). /// For each complex pair the index is the real part and the value is the imaginary part. |
리턴 | Primitive |
public static FFTReal ( Primitive complex ) : Primitive | ||
complex | Primitive | An array of complex data (real amplitude and imaginary phase). /// For each complex pair the index is the real part and the value is the imaginary part. |
리턴 | Primitive |