Unscales a single column of a two dimensional array of values.

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

Syntax

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

Parameters

columnIndex
Type: System..::.Int32
An int specifying the index of the column of z to unscale.
z
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix containing the values to be unscaled.

Remarks

Indexing is zero-based. Its columnIndex-th column is modified in place.

See Also