C# Class SoundLibrary.Filter.Delay.FractionalDelay

分数遅延フィルタ。
Inheritance: IDelay
Show file Open project: ufcpp/UfcppSample Class Usage Examples

Private Properties

Property Type Description
GetFractionalDelayCoef double[]
GetFractionalDelayCoef void

Public Methods

Method Description
Clear ( ) : void

内部状態のクリア

Clone ( ) : object
FractionalDelay ( double time ) : System

コンストラクタ

FractionalDelay ( double time, int firLength ) : System

コンストラクタ

GetBufferValue ( int n ) : double
GetValue ( ) : double

値の取り出し。

GetValue ( double x ) : double

フィルタリングを行う。

Push ( double x ) : void

値を循環バッファにプッシュする。

Private Methods

Method Description
GetFractionalDelayCoef ( double delay, int length ) : double[]

ディレイ値から分数遅延 FIR フィルタ係数を計算する。

GetFractionalDelayCoef ( double delay, int length, double coef ) : void

Method Details

Clear() public method

内部状態のクリア
public Clear ( ) : void
return void

Clone() public method

public Clone ( ) : object
return object

FractionalDelay() public method

コンストラクタ
public FractionalDelay ( double time ) : System
time double 遅延タップ数
return System

FractionalDelay() public method

コンストラクタ
public FractionalDelay ( double time, int firLength ) : System
time double 遅延タップ数
firLength int 分数遅延FIRの次数
return System

GetBufferValue() public method

public GetBufferValue ( int n ) : double
n int
return double

GetValue() public method

値の取り出し。
public GetValue ( ) : double
return double

GetValue() public method

フィルタリングを行う。
public GetValue ( double x ) : double
x double フィルタ入力。
return double

Push() public method

値を循環バッファにプッシュする。
public Push ( double x ) : void
x double プッシュする値
return void