VariableGainAmplifierBackoffPolynomialEvaluate Method (Double, Int32) |
Evaluate the backoff polynomial given the normalized input power.
Namespace:
AGI.Foundation.Communications.SignalProcessing
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override Motion<double> Evaluate(
double x,
int order
)
Public Overrides Function Evaluate (
x As Double,
order As Integer
) As Motion(Of Double)
public:
virtual Motion<double> Evaluate(
double x,
int order
) override
abstract Evaluate :
x : float *
order : int -> Motion<float>
override Evaluate :
x : float *
order : int -> Motion<float>
Parameters
- x
- Type: SystemDouble
The input power normalized by the input saturation point. - order
- Type: SystemInt32
The suggested order of the evaluation
(which for this method is ignored and the result will be zeroth order).
Return Value
Type:
MotionDoubleThe value of the polynomial evaluated at x.
See Also