PolynomialBase<T>.Reduce Method

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0

Overload List

Reduce() Reduces the degree of a polynomial so that the leading coefficient is different from zero.
Reduce(T) Reduces the degree of a polynomial so that the leading coefficient is greater than the specified tolerance.

Reduce

Reduces the degree of a polynomial so that the leading coefficient is different from zero.
C#
protected void Reduce()

Reduce(T)

Reduces the degree of a polynomial so that the leading coefficient is greater than the specified tolerance.
C#
protected void Reduce(
	T tolerance
)

Parameters

tolerance  T
The absolute tolerance to use as the threshold for considering a coefficient equal to zero.

See Also