| ImprovedNewtonRaphsonMethodD Constructor |
Namespace: DigitalRune.Mathematics.AnalysisAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public ImprovedNewtonRaphsonMethodD(
Func<double, double> function,
Func<double, double> derivative
)
Public Sub New (
function As Func(Of Double, Double),
derivative As Func(Of Double, Double)
)
public:
ImprovedNewtonRaphsonMethodD(
Func<double, double>^ function,
Func<double, double>^ derivative
)
new :
function : Func<float, float> *
derivative : Func<float, float> -> ImprovedNewtonRaphsonMethodD
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 See Also