| IPLS1CalcCalculate Method |
Performs a PLS1 calculation on the given data.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public abstract void Calculate(
DoubleMatrix predictorMatrix,
DoubleVector responseVector,
int numComponents
)
Public MustOverride Sub Calculate (
predictorMatrix As DoubleMatrix,
responseVector As DoubleVector,
numComponents As Integer
)
public:
virtual void Calculate(
DoubleMatrix^ predictorMatrix,
DoubleVector^ responseVector,
int numComponents
) abstract
abstract Calculate :
predictorMatrix : DoubleMatrix *
responseVector : DoubleVector *
numComponents : int -> unit
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