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 indicates the action function to be used.
- bias
- Type: System..::.Double
A double which specifies the initial bias for the Perceptrons.