Decodes a binary encoded array into its nominal category.

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 int Decode(
	array<int>^ z
)

Parameters

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

Return Value

An int containing the number associated with the category encoded in z.

Remarks

This is the inverse of the Encode method.

See Also