Establishes a Link between two Nodes with a specified weight.

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

Syntax

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

Parameters

from
Type: Imsl.DataMining.Neural..::.Node
The origination Node.
to
Type: Imsl.DataMining.Neural..::.Node
The destination Node.
weight
Type: System..::.Double
A double which specifies the weight to be given the Link.

Return Value

A Link between the two Nodes.

See Also