Decodes a matrix representing the binary encoded columns of the nominal variable.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual int[] Decode(
	int[,] z
)
Visual Basic (Declaration)
Public Overridable Function Decode ( _
	z As Integer(,) _
) As Integer()
Visual C++
public:
virtual array<int>^ Decode(
	array<int,2>^ z
)

Parameters

z
Type: array< System..::.Int32 ,2>[,](,)[,]
An int matrix containing the data to be decoded.

Return Value

An int array containing the decoded data.

Remarks

This is the inverse of the Encode method.

See Also