C# Класс LitDev.LDMathX

Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

FFTComplex() публичный статический Метод

Create an array of complex values from arrays of real and imaginary parts.
public static FFTComplex ( Primitive real, Primitive imaginary ) : Primitive
real Primitive An array of real data.
imaginary Primitive An array of imaginary data.
Результат Primitive

FFTForward() публичный статический Метод

Compute a FFT (Fast Fourier Transform).
public static FFTForward ( Primitive real ) : Primitive
real Primitive An array of real values to calculate the FFT from.
Результат Primitive

FFTImaginary() публичный статический Метод

Get the imaginary part of an array of complex data.
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

FFTInverse() публичный статический Метод

The inverse of a FFT (Fast Fourier Transform).
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

FFTReal() публичный статический Метод

Get the real part of an array of complex data.
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