NewtonRootFinder Type

Constructors

Constructor Description

NewtonRootFinder(function, derivativeOfFunction)

Full Usage: NewtonRootFinder(function, derivativeOfFunction)

Parameters:
    function : Func<float, float>
    derivativeOfFunction : Func<float, float>

function : Func<float, float>
derivativeOfFunction : Func<float, float>

NewtonRootFinder(function, derivativeOfFunction, maxNumberOfIterations, accuracy)

Full Usage: NewtonRootFinder(function, derivativeOfFunction, maxNumberOfIterations, accuracy)

Parameters:
    function : Func<float, float>
    derivativeOfFunction : Func<float, float>
    maxNumberOfIterations : int
    accuracy : float

function : Func<float, float>
derivativeOfFunction : Func<float, float>
maxNumberOfIterations : int
accuracy : float