Click or drag to resize

DigitalFilter(Double, Double, Double) Constructor

Creates a new DigitalFilter based on coeficents and gain a[0] y[k] + a[1] y[k-1].... = K * (b[0] x[k] + b[1] x[k-1]... b[n] x[k-n]).

Namespace: GSF.NumericalAnalysis
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public DigitalFilter(
	double[] b,
	double[] a,
	double k
)
View Source

Parameters

b  Double
The input coefficients (b[0] through b[n])
a  Double
The output coefficients (a[0] through a[n])
k  Double
The gain of the filter
See Also