| InputLayerCreateInputs Method |
Creates a number of InputNodes in this Layer
of the neural network.
Namespace: Imsl.DataMining.NeuralAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic virtual InputNode[] CreateInputs(
int n
)
Public Overridable Function CreateInputs (
n As Integer
) As InputNode()
public:
virtual array<InputNode^>^ CreateInputs(
int n
)
abstract CreateInputs :
n : int -> InputNode[]
override CreateInputs :
n : int -> InputNode[] Parameters
- n
- Type: SystemInt32
An int which specifies the number of InputNodes to be
created in this Layer.
Return Value
Type:
InputNode
An
InputNode array containing the created
InputNodes.
See Also