public DoubleMatrix GetVariances(
ReadOnlyDoubleMatrix supplementaryVariables
)
Public Function GetVariances (
supplementaryVariables As ReadOnlyDoubleMatrix
) As DoubleMatrix
public:
DoubleMatrix^ GetVariances(
ReadOnlyDoubleMatrix^ supplementaryVariables
)
member GetVariances :
supplementaryVariables : ReadOnlyDoubleMatrix -> DoubleMatrix
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.
ArgumentNullException | supplementaryVariables is null. |
ArgumentOutOfRangeException | The number of rows in supplementaryVariables is not equal to the number of points in the cloud. |