VariableGainAmplifierBackoffPolynomial Constructor (Double) | 
 
            Initializes a new instance based on the given polynomial coefficients.
            
 
    Namespace: 
   AGI.Foundation.Communications.SignalProcessing
    Assembly:
   AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic VariableGainAmplifierBackoffPolynomial(
	params double[] coefficients
)
Public Sub New ( 
	ParamArray coefficients As Double()
)
public:
VariableGainAmplifierBackoffPolynomial(
	... array<double>^ coefficients
)
new : 
        coefficients : float[] -> VariableGainAmplifierBackoffPolynomialParameters
- coefficients
 - Type: SystemDouble
The coefficients of the polynomial, starting with the highest order term
            (P = coefficients[0]*x^(N) + coefficients[1]*x^(N-1) + ... + coefficients[N-1]*x + coefficients[N])
            where N is the order of the polynomial. 
See Also