|  | IPLS2CalcCalculate Method | 
            Perform a PLS2 calculation on the given data.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic abstract void Calculate(
	DoubleMatrix X,
	DoubleMatrix Y,
	int numComponents
)
Public MustOverride Sub Calculate ( 
	X As DoubleMatrix,
	Y As DoubleMatrix,
	numComponents As Integer
)
public:
virtual void Calculate(
	DoubleMatrix^ X, 
	DoubleMatrix^ Y, 
	int numComponents
) abstract
abstract Calculate : 
        X : DoubleMatrix * 
        Y : DoubleMatrix * 
        numComponents : int -> unit Parameters
- X  DoubleMatrix
- Predictor data values. Matrix should be number of 
            sample rows by number of predictor variable columns.
- Y  DoubleMatrix
- Response data values. Matrix should be number of 
            sample rows by number of response variable columns.
- numComponents  Int32
- Number of components, or latent vectors, to
            use for the calculation.
 See Also
See Also