CloudGetVariances(DoubleMatrix) Method

Computes the variances of the specified supplementary variables.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public DoubleMatrix GetVariances(
	DoubleMatrix supplementaryVariables
)

Parameters

supplementaryVariables  DoubleMatrix
The supplementary variables.

Return Value

DoubleMatrix
The supplementary variances as a row vector.

Remarks

Points and variables

The coordinates of a given point have length equal to the dimension of the cloud basis. The collection of the coordinates of all points on a given axis is referred to as an active variable, as opposed to supplementary ones. The matrix passed as supplementaryVariables must have as many rows as the number of points in the cloud, while the number of columns is the number of supplementary variables.

Exceptions

ArgumentNullExceptionsupplementaryVariables is null.
ArgumentOutOfRangeException The number of rows in supplementaryVariables is not equal to the number of points in the cloud.

See Also