C# Class IirFilter

FIR フィルタ。
Inheritance: IFilter
Mostrar archivo Open project: ufcpp/UfcppSample Class Usage Examples

Public Methods

Method Description
Clear ( ) : void
Clone ( ) : object
GetValue ( double x ) : double

各時刻 n で、 t[n] = c * x[n] + Σ a[i - 1] * t[n - i] y[n] = t[n] + Σ b[i - 1] * t[n - i]

IirFilter ( )
IirFilter ( double a0, double b0, double c )

係数を指定して初期化

Method Details

Clear() public method

public Clear ( ) : void
return void

Clone() public method

public Clone ( ) : object
return object

GetValue() public method

各時刻 n で、 t[n] = c * x[n] + Σ a[i - 1] * t[n - i] y[n] = t[n] + Σ b[i - 1] * t[n - i]
public GetValue ( double x ) : double
x double 入力
return double

IirFilter() public method

public IirFilter ( )

IirFilter() public method

係数を指定して初期化
public IirFilter ( double a0, double b0, double c )
a0 double 分母係数 a0
b0 double 分母係数 b0
c double ゲイン