Polynomial<T> Methods

Methods

Add(LinearCombination<T>) Adds another LinearCombination<T> to this instance.
(Inherited from LinearCombination<T>)
Add(T, LinearCombination<T>) Adds a multiple of another LinearCombination to this instance.
(Overrides LinearCombination<T>.Add(T, LinearCombination<T>))
Add(Polynomial<T>, Polynomial<T>) Adds two polynomials.
Clone Constructs an exact copy of this instance.
(Inherited from Curve<T>)
ComplexSlopeAt Evaluates the slope or first derivative of a polynomial for a complex number argument.
ComplexValueAt Evaluates the polynomial for a complex number argument.
Deflate Deflates a polynomial by dividing out a root.
Divide(Polynomial<T>, Polynomial<T>) Divides one Polynomial<T> by another.
Divide(Polynomial<T>, Polynomial<T>, Polynomial<T>) Divides one Polynomial<T> by another.
Equals(Object) Overridden. Returns whether this instance is equal to a specified object.
(Overrides Object.Equals(Object))
Equals(Polynomial<T>) Overridden. Returns whether this instance is equal to a specified polynomial.
Equals(Polynomial<T>, Polynomial<T>) Returns whether two Polynomial<T> objects represent the same value.
Evaluate Evaluates a polynomial with the specified coefficients.
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
FindComplexRoots Gets the set of roots of the Polynomial<T>.
FindRoots Gets the set of X-coordinates where the Polynomial<T> crosses the X-axis.
(Overrides Curve<T>.FindRoots())
FromRoots Constructs a new polynomial that has the specified roots.
GetCurveFitter Returns a CurveFitter object that can be used to fit the curve to data.
(Inherited from LinearCombination<T>)
GetDerivative Returns a Curve of type Polynomial<T> that represents the derivative of this Polynomial<T>.
(Overrides Curve<T>.GetDerivative())
GetHashCode Overridden. Returns the hash code for this instance.
(Overrides Object.GetHashCode())
GetInterpolatingPolynomial(T[], T[]) Constructs the interpolating polynomial through a set of points.
GetInterpolatingPolynomial(Vector<T>, Vector<T>) Constructs the interpolating polynomial through a set of points.
GetTypeGets the Type of the current instance.
(Inherited from Object)
Integral Gets the definite integral of the curve between the specified X-coordinates.
(Overrides Curve<T>.Integral(T, T))
LeastSquaresFit(Vector<T>, Vector<T>, Int32) Returns the Polynomial<T> that is the best least squares fit through the given set of points.
LeastSquaresFit(Vector<T>, Vector<T>, Int32, Vector<T>) Returns the Polynomial<T> that is the best weighted least squares fit through the given set of points.
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Modulus Divides one Polynomial<T> by another and returns the remainder.
Multiply Multiplies two polynomials.
OnParameterChanged Called when a coefficient of the polynomial is changed.
(Inherited from PolynomialBase<T>)
OnParameterChanging Called before the value of a curve parameter is changed.
(Inherited from Curve<T>)
Reduce() Reduces the degree of a polynomial so that the leading coefficient is different from zero.
(Inherited from PolynomialBase<T>)
Reduce(T) Reduces the degree of a polynomial so that the leading coefficient is greater than the specified tolerance.
(Inherited from PolynomialBase<T>)
SetParameter Sets a curve parameter to the specified value.
(Inherited from Curve<T>)
SlopeAt Evaluates the slope or first derivative of a polynomial for a real argument.
(Overrides LinearCombination<T>.SlopeAt(T))
Solve Finds the x value where the curve reaches the specified y value.
(Inherited from Curve<T>)
Subtract(LinearCombination<T>) Subtracts another LinearCombination<T> from this instance.
(Inherited from LinearCombination<T>)
Subtract(Polynomial<T>, Polynomial<T>) Subtracts two polynomials.
TangentAt Gets the tangent line to the curve at the specified X-coordinate.
(Inherited from Curve<T>)
ToString() Returns a string representation of this instance.
(Overrides Object.ToString())
ToString(String) Returns a string representation of this instance using the specified string to format the coefficients.
ToString(String, IFormatProvider) Returns a string representation of this instance using the specified string and format provider to format the coefficients.
ValueAt Evaluates the polynomial for a real argument.
(Overrides LinearCombination<T>.ValueAt(T))

See Also