|  | PolynomialDegree Property | 
            Gets the degree of the polynomial encapsulated by this object.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic int Degree { get; }Public ReadOnly Property Degree As Integer
	Get
public:
property int Degree {
	int get ();
}member Degree : int with get
Property Value
Int32 Remarks
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
See Also