| NewtonRaphsonMethodF Constructor |
Namespace: DigitalRune.Mathematics.AnalysisAssembly: 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
)
Public Sub New (
function As Func(Of Single, Single),
derivative As Func(Of Single, Single)
)
public:
NewtonRaphsonMethodF(
Func<float, float>^ function,
Func<float, float>^ derivative
)
new :
function : Func<float32, float32> *
derivative : Func<float32, float32> -> NewtonRaphsonMethodF
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 See Also