Filter.LowPassFir.LowPassFir C# (CSharp) Method

LowPassFir() public method

ローパスフィルタを作成
public LowPassFir ( int n, double w ) : System
n int タップ数=2n+1
w double 遮断周波数
return System
		public LowPassFir(int n, double w) : this(n, w, new WindowFunction(FirCommon.Constant1)){}
		

Same methods

LowPassFir::LowPassFir ( int n, double w, WindowFunction window ) : System
LowPassFir