Skip to content

Latest commit

 

History

History
49 lines (44 loc) · 1.08 KB

File metadata and controls

49 lines (44 loc) · 1.08 KB

API

CurrentModule = ConstrainedRootSolvers

Numerical methods

Find zero

find_zero
find_zero(f::Function, ms::BisectionMethod{FT},
    tol::Union{ResidualTolerance{FT}, SolutionTolerance{FT}}; stepping::Bool =
    false) where {FT<:AbstractFloat}
find_zero(f::Function, ms::NewtonBisectionMethod{FT},
    tol::Union{ResidualTolerance{FT}, SolutionTolerance{FT}}; stepping::Bool =
    false) where {FT<:AbstractFloat}
find_zero(f::Function, ms::NewtonRaphsonMethod{FT},
    tol::Union{ResidualTolerance{FT}, SolutionTolerance{FT}}; stepping::Bool =
    false) where {FT<:AbstractFloat}
find_zero(f::Function, ms::ReduceStepMethod{FT},
    tol::Union{ResidualTolerance{FT}, SolutionTolerance{FT}}; stepping::Bool =
    false) where {FT<:AbstractFloat}

Find peak

find_peak

Method options

AbstractCRSMethod
BisectionMethod
NelderMeadMethod
NewtonBisectionMethod
NewtonRaphsonMethod
ReduceStepMethod
ReduceStepMethodND

Tolerance options

AbstractTolerance
ResidualTolerance
SolutionTolerance
SolutionToleranceND
if_break
next_xy!