Click or drag to resize
DigitalRuneNewtonRaphsonMethodF Constructor
Initializes a new instance of the NewtonRaphsonMethodF class.

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

Parameters

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