File size: 621 Bytes
7885a28 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
"""
==============================================================
Finite Difference Differentiation (:mod:`scipy.differentiate`)
==============================================================
.. currentmodule:: scipy.differentiate
SciPy ``differentiate`` provides functions for performing finite difference
numerical differentiation of black-box functions.
.. autosummary::
:toctree: generated/
derivative
jacobian
hessian
"""
from ._differentiate import *
__all__ = ['derivative', 'jacobian', 'hessian']
from scipy._lib._testutils import PytestTester
test = PytestTester(__name__)
del PytestTester
|