Returns a forecast for each of the Network's outputs computed
from the trained Network.
Namespace: Imsl.DataMining.NeuralAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic abstract double[] Forecast(
double[] x
)
Public MustOverride Function Forecast (
x As Double()
) As Double()
public:
virtual array<double>^ Forecast(
array<double>^ x
) abstract
abstract Forecast :
x : float[] -> float[]
Parameters
- x
- Type: SystemDouble
A double array of values with the same length and order as the
training patterns used to train the Network.
Return Value
Type:
Double
A
double array containing the forecasts for the output
Perceptrons. Its length is equal to the number of
output
Perceptrons.
See Also