Namespace: Extreme.Mathematics.EquationSolversAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public NewtonRaphsonSolver(
Func<double, double> targetFunction,
Func<double, double> derivativeOfTargetFunction,
double x0
)
Public Sub New (
targetFunction As Func(Of Double, Double),
derivativeOfTargetFunction As Func(Of Double, Double),
x0 As Double
)
public:
NewtonRaphsonSolver(
Func<double, double>^ targetFunction,
Func<double, double>^ derivativeOfTargetFunction,
double x0
)
new :
targetFunction : Func<float, float> *
derivativeOfTargetFunction : Func<float, float> *
x0 : float -> NewtonRaphsonSolver
Parameters
- targetFunction
- Type: SystemFuncDouble, Double
A delegate that represents a function of one variable
delegate that specifies the target function. - derivativeOfTargetFunction
- Type: SystemFuncDouble, Double
A delegate that represents a function of one variable
delegate that specifies the derivative of the target
function. - x0
- Type: SystemDouble
The initial guess for the root.
Numerical Libraries
Supported in: 6.0, 5.x, 4.x
Reference