|  | PLS2CrossValidationWithJackknifeCoefficients Property | 
            Gets the coefficients for the full model.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleMatrix Coefficients { get; }Public ReadOnly Property Coefficients As DoubleMatrix
	Get
public:
property DoubleMatrix^ Coefficients {
	DoubleMatrix^ get ();
}member Coefficients : DoubleMatrix with get
Property Value
DoubleMatrix Remarks
Remarks
            The coeffient matrix, 
B, can be used for prediction as follows:
            
            Let yhat(z) be the predicted value for the independet variable 
            value z, xbar the mean of the PredictorMatrix variables and 
            ybar the mean of ResponseVector variables. Then
            
yhat(z) = ybar + (z - xbar)B
 See Also
See Also