Scales 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 Encode(
	int columnIndex,
	double[,] x
)
Visual Basic (Declaration)
Public Overridable Sub Encode ( _
	columnIndex As Integer, _
	x As Double(,) _
)
Visual C++
public:
virtual void Encode(
	int columnIndex, 
	array<double,2>^ x
)

Parameters

columnIndex
Type: System..::.Int32
An int specifying the index of the column of x to scale.
x
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix containing the value to be scaled.

Remarks

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

See Also