Computes a forecast using the Network.

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

Syntax

C#
public override double[] Forecast(
	double[] x
)
Visual Basic (Declaration)
Public Overrides Function Forecast ( _
	x As Double() _
) As Double()
Visual C++
public:
virtual array<double>^ Forecast(
	array<double>^ x
) override

Parameters

x
Type: array< System..::.Double >[]()[]
A double array of values to which the Nodes in the InputLayer are to be set.

Return Value

A double array containing the values of the Nodes in the OutputLayer.

See Also