package scipy

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Nonlin.ExcitingMixingSource

Sourcetype tag = [
  1. | `ExcitingMixing
]
Sourcetype t = [ `ExcitingMixing | `Object ] Obj.t
Sourceval of_pyobject : Py.Object.t -> t
Sourceval to_pyobject : [> tag ] Obj.t -> Py.Object.t
Sourceval create : ?alpha:Py.Object.t -> ?alphamax:float -> unit -> t

Find a root of a function, using a tuned diagonal Jacobian approximation.

The Jacobian matrix is diagonal and is tuned on each iteration.

.. warning::

This algorithm may be useful for specific problems, but whether it will work may depend strongly on the problem.

See Also -------- root : Interface to root finding algorithms for multivariate functions. See ``method=='excitingmixing'`` in particular.

Parameters ---------- %(params_basic)s alpha : float, optional Initial Jacobian approximation is (-1/alpha). alphamax : float, optional The entries of the diagonal Jacobian are kept in the range ``alpha, alphamax``. %(params_extra)s

Sourceval aspreconditioner : [> tag ] Obj.t -> Py.Object.t

None

Sourceval matvec : f:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

None

Sourceval rmatvec : f:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

None

Sourceval rsolve : ?tol:Py.Object.t -> f:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

None

Sourceval setup : x:Py.Object.t -> f:Py.Object.t -> func:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

None

Sourceval solve : ?tol:Py.Object.t -> f:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

None

Sourceval todense : [> tag ] Obj.t -> [> `ArrayLike ] Np.Obj.t

None

Sourceval update : x:Py.Object.t -> f:Py.Object.t -> [> tag ] Obj.t -> Py.Object.t

None

Sourceval to_string : t -> string

Print the object to a human-readable representation.

Sourceval show : t -> string

Print the object to a human-readable representation.

Sourceval pp : Format.formatter -> t -> unit

Pretty-print the object to a formatter.