A link in a neural network.

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

Syntax

C#
[SerializableAttribute]
public class Link
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class Link
Visual C++
[SerializableAttribute]
public ref class Link

Remarks

Link objects are not created directly. Instead, they are created by factory methods in FeedForwardNetwork.

The most useful method is LinkAll() which creates Link objects connecting every Node in each Layer to every Node in the next Layer.

The method Link(node,node) creates a Link from a Node to any Node in a later Layer.

The method FindLink(Node,Node) returns the Link connecting two Nodes in the Network.

The method Remove(Link) removes a Link from the Network.

Each Link object contains a weight, see property Weight. Weights are used in computing Perceptron values.

Inheritance Hierarchy

System..::.Object
Imsl.DataMining.Neural..::.Link

See Also