|  | PolynomialLeastSquares Class | 
            Class PolynomialLeastSquares performs a least squares fit of a polynomial to
            the data.
            
 Inheritance Hierarchy
Inheritance Hierarchy NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic class PolynomialLeastSquares : ICloneable
Public Class PolynomialLeastSquares
	Implements ICloneable
public ref class PolynomialLeastSquares : ICloneable
type PolynomialLeastSquares = 
    class
        interface ICloneable
    endThe PolynomialLeastSquares type exposes the following members.
 Constructors
Constructors|  | Name | Description | 
|---|
|  | PolynomialLeastSquares(Int32, DoubleVector, DoubleVector) | Constructs a PolynomialLeastSquares instances that fits the given data. | 
|  | PolynomialLeastSquares(Int32, DoubleVector, DoubleVector, Boolean) | Constructs a PolynomialLeastSquares instances that fits the given data. | 
|  | PolynomialLeastSquares(Int32, DoubleVector, DoubleVector, Double) | Constructs a PolynomialLeastSquares instances that fits the given data. | 
|  | PolynomialLeastSquares(Int32, DoubleVector, DoubleVector, Boolean, Double) | Constructs a PolynomialLeastSquares instances that fits the given data. | 
Top Properties
Properties Methods
Methods|  | Name | Description | 
|---|
|  | Clone | Creates a deep copy of this polynomial least squares. | 
|  | CoeffErrorEstimate | Returns error estimates for the coefficients based on the estimated error in the 
            y values. | 
Top Remarks
Remarks
            Solves the equation y = Xa using least squares, where X is the
            Vandermonde matrix. X[i,j] = xi ^ j. y is the y data.
            
 See Also
See Also