|  | PLS1NipalsAlgorithmPredict(DoubleMatrix) Method | 
            Use the calculated model to predict the response values, ResponseVector, 
            from the given set of predictor variables.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic override DoubleVector Predict(
	DoubleMatrix Z
)
Public Overrides Function Predict ( 
	Z As DoubleMatrix
) As DoubleVector
public:
virtual DoubleVector^ Predict(
	DoubleMatrix^ Z
) override
abstract Predict : 
        Z : DoubleMatrix -> DoubleVector 
override Predict : 
        Z : DoubleMatrix -> DoubleVector Parameters
- Z  DoubleMatrix
- Matrix of predictor variable values, one per row.
Return Value
DoubleVectorPredicted response variable values. The 
ith element is 
            the predicted response for predictor variable in the 
ith row of 
            
Z.
 See Also
See Also