C# Class SoundLibrary.SpectrumAnalysis.Fft

Managed C++ で作った Fft クラスのラッパー。 FFT の動作の詳細は fft\fft.cpp の方を参照。
Datei anzeigen Open project: ufcpp/UfcppSample Class Usage Examples

Public Methods

Method Description
Fft ( int length ) : System
Invert ( double x ) : void

逆フーリエ変換を行う。

Transform ( double x ) : void

フーリエ変換を行う。

Private Methods

Method Description
CheckLength ( int len ) : void
IsPower2 ( int len ) : bool

len が2のべき乗かどうか調べる。

Method Details

Fft() public method

public Fft ( int length ) : System
length int
return System

Invert() public method

逆フーリエ変換を行う。
public Invert ( double x ) : void
x double 変換したいデータ
return void

Transform() public method

フーリエ変換を行う。
public Transform ( double x ) : void
x double 変換したいデータ
return void