CategoricalVariableFromDoubleMatrix Method

Converts from DoubleMatrix to CategoricalVariable.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static CategoricalVariable FromDoubleMatrix(
	DoubleMatrix value
)

Parameters

value  DoubleMatrix
The object to convert.

Return Value

CategoricalVariable
The converted object.

Remarks

The matrix is successfully converted only if it represents a column vector. The variable result of the conversion will have a number of categories equal the matrix number of rows. Each matrix row corresponds to a category, whose code is the value on the row, while its label is the row name, if any, or the result of the conversion of the code to a string. The name of the matrix is set equal to the variable name.

Exceptions

ArgumentNullExceptionvalue is null.
ArgumentOutOfRangeExceptionvalue is not a column vector.
InvalidOperationExceptionvalue has two equal entries.
-or-
value has two rows having the same name.

See Also