Click or drag to resize
DigitalRuneNewtonRaphsonMethodD Constructor
Initializes a new instance of the NewtonRaphsonMethodD class.

Namespace: DigitalRune.Mathematics.Analysis
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public NewtonRaphsonMethodD(
	Func<double, double> function,
	Func<double, double> derivative
)

Parameters

function
Type: SystemFuncDouble, Double
The function f(x), which root we want to find.
derivative
Type: SystemFuncDouble, Double
The function f'(x), which computes the derivative.
Exceptions
ExceptionCondition
ArgumentNullExceptionfunction is .
ArgumentNullExceptionderivative is .
See Also