C# Class SoundLibrary.Filter.BandPassFir

バンドパス FIR フィルタ。
Inheritance: OddLinearFir
Mostra file Open project: ufcpp/UfcppSample

Public Methods

Method Description
BandPassFir ( int n, double wl, double wh ) : System

バンドパスフィルタを作成

BandPassFir ( int n, double wl, double wh, IWindow window ) : System

バンドパスフィルタを作成

BandPassFir ( int n, double wl, double wh, WindowFunction window ) : System

バンドパスフィルタを作成

SetParameter ( double wl, double wh, WindowFunction window ) : void

パラメータを設定する。

Method Details

BandPassFir() public method

バンドパスフィルタを作成
public BandPassFir ( int n, double wl, double wh ) : System
n int タップ数=2n+1
wl double 下限周波数
wh double 上限周波数
return System

BandPassFir() public method

バンドパスフィルタを作成
public BandPassFir ( int n, double wl, double wh, IWindow window ) : System
n int タップ数=2n+1
wl double 下限周波数
wh double 上限周波数
window IWindow 窓関数
return System

BandPassFir() public method

バンドパスフィルタを作成
public BandPassFir ( int n, double wl, double wh, WindowFunction window ) : System
n int タップ数=2n+1
wl double 下限周波数
wh double 上限周波数
window WindowFunction 窓関数
return System

SetParameter() public method

パラメータを設定する。
public SetParameter ( double wl, double wh, WindowFunction window ) : void
wl double 下限周波数
wh double 上限周波数
window WindowFunction 窓関数
return void