|  | PolynomialLeastSquaresDesignMatrix Property | 
            Gets the design matrix for the fit. 
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleMatrix DesignMatrix { get; }Public ReadOnly Property DesignMatrix As DoubleMatrix
	Get
public:
property DoubleMatrix^ DesignMatrix {
	DoubleMatrix^ get ();
}member DesignMatrix : DoubleMatrix with get
Property Value
DoubleMatrix Remarks
Remarks
            The design matrix is the matrix whose ith row is:
            
xi^n  xi^(n-1) xi^(n-2) . . .  xi  1
            where n is the degree of the polynomial fitted.
            
 See Also
See Also