Filter.BandPassFir.BandPassFir C# (CSharp) Method

BandPassFir() public method

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

Same methods

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