  | PLS2NipalsAlgorithmCalculate Method | 
            Calculates the PLS2 for the given predictor and response matrices 
            and the given number of components.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic override void Calculate(
	DoubleMatrix X,
	DoubleMatrix Y,
	int numComponents
)
Public Overrides Sub Calculate ( 
	X As DoubleMatrix,
	Y As DoubleMatrix,
	numComponents As Integer
)
public:
virtual void Calculate(
	DoubleMatrix^ X, 
	DoubleMatrix^ Y, 
	int numComponents
) override
abstract Calculate : 
        X : DoubleMatrix * 
        Y : DoubleMatrix * 
        numComponents : int -> unit 
override Calculate : 
        X : DoubleMatrix * 
        Y : DoubleMatrix * 
        numComponents : int -> unit Parameters
- X  DoubleMatrix
 - n case by p variables predictor matrix.
 - Y  DoubleMatrix
 - n case by m variables response matrix.
 - numComponents  Int32
 - Number of components (or eigenvectors
            to use. Must be less than p - the number of predictory variables.
 
See Also