Creates a number of InputNodes in this Layer of the neural network.

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

Syntax

C#
public virtual InputNode[] CreateInputs(
	int n
)
Visual Basic (Declaration)
Public Overridable Function CreateInputs ( _
	n As Integer _
) As InputNode()
Visual C++
public:
virtual array<InputNode^>^ CreateInputs(
	int n
)

Parameters

n
Type: System..::.Int32
An int which specifies the number of InputNodes to be created in this Layer.

Return Value

An InputNode array containing the created InputNodes.

See Also