Creates a number of Perceptrons 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 Perceptron[] CreatePerceptrons(
	int n
)
Visual Basic (Declaration)
Public Overridable Function CreatePerceptrons ( _
	n As Integer _
) As Perceptron()
Visual C++
public:
virtual array<Perceptron^>^ CreatePerceptrons(
	int n
)

Parameters

n
Type: System..::.Int32
An int which specifies the number of Perceptrons to be created.

Return Value

An array containing the created Perceptrons.

Remarks

The created Perceptrons use the logistic activation function and have an initial bias value of zero.

See Also