Establishes a Link between two Nodes.

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

Syntax

C#
public virtual Link Link(
	Node from,
	Node to
)
Visual Basic (Declaration)
Public Overridable Function Link ( _
	from As Node, _
	to As Node _
) As Link
Visual C++
public:
virtual Link^ Link(
	Node^ from, 
	Node^ to
)

Parameters

from
Type: Imsl.DataMining.Neural..::.Node
The origination Node.
to
Type: Imsl.DataMining.Neural..::.Node
The destination Node.

Return Value

A Link between the two Nodes.

Remarks

Any existing Link between these Nodes is removed.

See Also