Creates a number of Perceptrons in this Layer with the specified bias.

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

Syntax

C#
public virtual Perceptron[] CreatePerceptrons(
	int n,
	IActivation activation,
	double bias
)
Visual Basic (Declaration)
Public Overridable Function CreatePerceptrons ( _
	n As Integer, _
	activation As IActivation, _
	bias As Double _
) As Perceptron()
Visual C++
public:
virtual array<Perceptron^>^ CreatePerceptrons(
	int n, 
	IActivation^ activation, 
	double bias
)

Parameters

n
Type: System..::.Int32
An int which specifies the number of Perceptrons to be created.
activation
Type: Imsl.DataMining.Neural..::.IActivation
The IActivation object which specifies the action function to be used.
bias
Type: System..::.Double
A double containing the initial value to be applied as the Bias values for the Perceptrons.

Return Value

An array containing the created Perceptrons.

See Also