Gets the degree of the polynomial encapsulated by this object.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public int Degree { get; }
Visual Basic (Declaration)
Public ReadOnly Property Degree As Integer
Visual C++
public:
property int Degree {
	int get ();
}

Remarks

The degree is the order of the highest non-zero coefficient. Thus, the degree may be less than the length of the underlying coefficient vector, as returned by Coeff.Length. Use Reduce() to remove trailing zeros from the coefficient vector.

See Also