|  | PolynomialLeastSquaresCoeffErrorEstimate Method | 
            Returns error estimates for the coefficients based on the estimated error in the 
            y values.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleVector CoeffErrorEstimate(
	double yError
)
Public Function CoeffErrorEstimate ( 
	yError As Double
) As DoubleVector
public:
DoubleVector^ CoeffErrorEstimate(
	double yError
)
member CoeffErrorEstimate : 
        yError : float -> DoubleVector Parameters
- yError  Double
- The estimated error in the y values.
Return Value
DoubleVector
            A vector of estimated coefficient errors. Error at index i 
            corresponds to the coefficient at index i (as returned by the
            
Coefficients property).
            
 See Also
See Also