C# 클래스 LitDev.LDMathX

파일 보기 프로젝트 열기: litdev1/LitDev

공개 메소드들

메소드 설명
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