Returns a forecast for each of the Network's outputs computed from the trained Network.

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

Syntax

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

Parameters

x
Type: array< System..::.Double >[]()[]
A double array of values with the same length and order as the training patterns used to train the Network.

Return Value

A double array containing the forecasts for the output Perceptrons. Its length is equal to the number of output Perceptrons.

See Also