|
AnalogFilterFilter(Double, Double, FilterState, FilterState) Method
|
Computes the output of the filter for the given single input and
FilterState.
Namespace: GSF.NumericalAnalysisAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
SyntaxPublic Function Filter (
value As Double,
fs As Double,
initialState As FilterState,
<OutAttribute> ByRef finalState As FilterState
) As Double
public:
double Filter(
double value,
double fs,
FilterState^ initialState,
[OutAttribute] FilterState^% finalState
)
member Filter :
value : float *
fs : float *
initialState : FilterState *
finalState : FilterState byref -> float
function Filter(value, fs, initialState, finalState);
View SourceParameters
- value Double
- The input value
- fs Double
- The sampling Frequency of the signal
- initialState FilterState
- The initial state of the filter
- finalState FilterState
- The final State of the Filter
Return Value
Double the value of the filtered signal
See Also