scipy 1.8.0 Pypi GitHub Homepage
Other Docs
BackRef
_determine_mf_and_set_bands(self, has_jac)

In the Fortran code, the legal values of :None:None:`MF` are:

10, 11, 12, 13, 14, 15, 20, 21, 22, 23, 24, 25, -11, -12, -14, -15, -21, -22, -24, -25

but this Python wrapper does not use negative values. Returns

mf = 10*self.meth + miter

self.meth is the linear multistep method:

self.meth == 1: method="adams" self.meth == 2: method="bdf"

miter is the correction iteration method:

miter == 0: Functional iteraton; no Jacobian involved. miter == 1: Chord iteration with user-supplied full Jacobian. miter == 2: Chord iteration with internally computed full Jacobian. miter == 3: Chord iteration with internally computed diagonal Jacobian. miter == 4: Chord iteration with user-supplied banded Jacobian. miter == 5: Chord iteration with internally computed banded Jacobian.

Side effects: If either self.mu or self.ml is not None and the other is None, then the one that is None is set to 0.

Determine the :None:None:`MF` parameter (Method Flag) for the Fortran subroutine :None:None:`dvode`.

Examples

See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

scipy.signal._fir_filter_design.remez scipy.signal._fir_filter_design.firls

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/integrate/_ode.py#888
type: <class 'function'>
Commit: