SciPy

This is documentation for an old release of SciPy (version 1.3.2). Read this page in the documentation of the latest stable release (version 1.15.1).

root_scalar(method=’secant’)

scipy.optimize.root_scalar(args=(), method='secant', x0=None, options={})

See also

For documentation for the rest of the parameters, see scipy.optimize.root_scalar

Options
argstuple, optional

Extra arguments passed to the objective function.

xtolfloat, optional

Tolerance (absolute) for termination.

rtolfloat, optional

Tolerance (relative) for termination.

maxiterint, optional

Maximum number of iterations.

x0float, required

Initial guess.

x1float, required

A second guess.

options: dict, optional

Specifies any method-specific options not covered above

Previous topic

root_scalar(method=’toms748’)

Next topic

root_scalar(method=’halley’)