public abstract class Polynomial
Public MustInherit Class Polynomial
public ref class Polynomial abstract
[<AbstractClassAttribute>]
type Polynomial = class end
Degree | Gets the degree of the polynomial. |
Coefficient | Gets the specified coefficient. |
Differentiate | Differentiates the polynomial. |
Divide | Computes the quotient of two polynomials. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
Evaluate | Evaluates the polynomial for the given input value. |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
FromCoefficients | Initializes a new polynomial with the given coefficients. |
FromPoints(Double) | Initializes a new polynomial that passes through the given points. |
FromPoints(ICollectionXY) | Initializes a new polynomial that passes through the given points. |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
Integrate | Integrates the polynomial. |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
ToString |
Generates a string representation of the polynomial.
(Overrides ObjectToString) |
Addition(Polynomial, Polynomial) | Computes the sum of two polynomials. |
Multiply(Polynomial, Polynomial) | Computes the product of two polynomials. |
Subtraction(Polynomial, Polynomial) | Computes the difference of two polynomials. |
UnaryNegation(Polynomial) | Negates a polynomial. |