Returns the Link between two Nodes.

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

Syntax

C#
public virtual Link FindLink(
	Node from,
	Node to
)
Visual Basic (Declaration)
Public Overridable Function FindLink ( _
	from As Node, _
	to As Node _
) As Link
Visual C++
public:
virtual Link^ FindLink(
	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, or null if no such Link exists.

See Also