CategoricalVariable   Conversion (CategoricalVariable to DoubleMatrix)

Performs an explicit conversion from CategoricalVariable to DoubleMatrix.

Definition

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

Parameters

value  CategoricalVariable
The object to convert.

Return Value

DoubleMatrix
The converted object.

Remarks

The variable is converted to a column vector whose number of rows equals the number of categories in the variable. Each row corresponds to a category, whose label is the row name, while the category code is the matrix entry in the row. The name of the matrix is set equal to the variable name.

Exceptions

ArgumentNullExceptionvalue is null.

See Also