This commit is contained in:
cjw
2026-02-12 23:22:11 +08:00
parent 7b09eb3d89
commit 89660bba4e
5988 changed files with 2517516 additions and 0 deletions
@@ -0,0 +1,27 @@
"""
==============================================================
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