public DoubleMatrix CorrelateSupplementaryVariables(
DoubleMatrix supplementaryVariables
)
Public Function CorrelateSupplementaryVariables (
supplementaryVariables As DoubleMatrix
) As DoubleMatrix
public:
DoubleMatrix^ CorrelateSupplementaryVariables(
DoubleMatrix^ supplementaryVariables
)
member CorrelateSupplementaryVariables :
supplementaryVariables : DoubleMatrix -> DoubleMatrix
The matrix passed as supplementaryVariables must have as many rows as the number of points in the ActiveCloud, while the number of columns is the number of supplementary variables.
Returns a matrix having as many rows as the number of supplementary variables, and as many columns as the number of principal ones. A given entry is the correlation between a supplementary variable, that corresponding to the entry row, and a principal variable, that corresponding to the entry column.
ArgumentNullException | supplementaryVariables is null. |
ArgumentOutOfRangeException | The number of rows in supplementaryVariables is not equal to the number of points in the active cloud. |