Computes error statistics.
Namespace:
Imsl.DataMining.Neural
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public virtual double[] ComputeStatistics( double[,] xData, double[,] yData ) |
Visual Basic (Declaration) |
---|
Public Overridable Function ComputeStatistics ( _ xData As Double(,), _ yData As Double(,) _ ) As Double() |
Visual C++ |
---|
public: virtual array<double>^ ComputeStatistics( array<double,2>^ xData, array<double,2>^ yData ) |
Parameters
- xData
- Type: array<
System..::.Double
,2>[,](,)[,]
A double matrix containing the input values.
- yData
- Type: array<
System..::.Double
,2>[,](,)[,]
A double array containing the observed values.
Return Value
A double array containing the above described statistics.
Remarks
This is a static method that can be used to compute the statistics
regardless of the training class used to train the Network.
Computes statistics related to the error. In this table, the observed
values are . The forecasted values are
. The mean observed value is
, where N is the number of
observations and C is the number of classes per observation.
Index | Name | Formula |
---|---|---|
0 | SSE | ![]() |
1 | RMS | ![]() |
2 | Laplacian | ![]() |
3 | Scaled Laplacian | ![]() |
4 | Max residual | ![]() |