PolynomialBase<T>.OnParameterChanged Method

Called when a coefficient of the polynomial is changed.

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0
C#
protected override void OnParameterChanged(
	int index,
	T value
)

Parameters

index  Int32
An integer specifying the index of the coefficient.
value  T
The value of the new coefficient.

Remarks

This method is called internally to ensure that the Degree property maintains the proper value.

See Also