Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/scipy/misc/__init__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2==========================================
3Miscellaneous routines (:mod:`scipy.misc`)
4==========================================
6.. currentmodule:: scipy.misc
8Various utilities that don't have another home.
10.. autosummary::
11 :toctree: generated/
13 ascent - Get example image for processing
14 central_diff_weights - Weights for an n-point central mth derivative
15 derivative - Find the nth derivative of a function at a point
16 face - Get example image for processing
17 electrocardiogram - Load an example of a 1-D signal.
19"""
21from . import doccer
22from .common import *
24__all__ = ['doccer']
26from . import common
27__all__ += common.__all__
28del common
30from scipy._lib._testutils import PytestTester
31test = PytestTester(__name__)
32del PytestTester