Click or drag to resize

IPLS1CalcCalculate Method

Performs a PLS1 calculation on the given data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public abstract void Calculate(
	DoubleMatrix predictorMatrix,
	DoubleVector responseVector,
	int numComponents
)

Parameters

predictorMatrix  DoubleMatrix
Independent data values. Matrix should be number of samples rows by number of independent variables columns.
responseVector  DoubleVector
response data values. Vector should have length equal to the number of samples.
numComponents  Int32
Number of components, or latent vectors, to use for the calculation.
See Also