Click or drag to resize
Accord.NET (logo)

LowerBoundNewtonRaphsonRun Method (Double, Double)

Note: This API is now obsolete.

Runs one iteration of the Lower-Bound Newton-Raphson iteration.

Namespace:  Accord.Statistics.Models.Regression.Fitting
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please use the Learn() method instead.")]
public double Run(
	double[][] inputs,
	double[][] outputs
)
Request Example View Source

Parameters

inputs
Type: SystemDouble
The input data.
outputs
Type: SystemDouble
The outputs associated with each input vector.

Return Value

Type: Double
The maximum relative change in the parameters after the iteration.
See Also