Click or drag to resize

Polynomial Class

Represents a polynomial with real coefficients.
Inheritance Hierarchy
SystemObject
  Meta.NumericsPolynomial

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public class Polynomial

The Polynomial type exposes the following members.

Properties
  NameDescription
Public propertyDegree
Gets the degree of the polynomial.
Top
Methods
  NameDescription
Public methodCoefficient
Gets the specified coefficient.
Public methodDifferentiate
Differentiates the polynomial.
Public methodStatic memberDivide
Computes the quotient of two polynomials.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodEvaluate
Evaluates the polynomial for the given input value.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodStatic memberFromCoefficients
Initializes a new polynomial with the given coefficients.
Public methodStatic memberFromPoints(Double)
Initializes a new polynomial that passes through the given points.
Public methodStatic memberFromPoints(ICollectionXY)
Initializes a new polynomial that passes through the given points.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIntegrate
Integrates the polynomial.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Generates a string representation of the polynomial.
(Overrides ObjectToString.)
Top
Operators
  NameDescription
Public operatorStatic memberAddition
Computes the sum of two polynomials.
Public operatorStatic memberMultiply
Computes the product of two polynomials.
Public operatorStatic memberSubtraction
Computes the difference of two polynomials.
Public operatorStatic memberUnaryNegation
Negates a polynomial.
Top
See Also