Hide keyboard shortcuts

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========================================== 

5 

6.. currentmodule:: scipy.misc 

7 

8Various utilities that don't have another home. 

9 

10.. autosummary:: 

11 :toctree: generated/ 

12 

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. 

18 

19""" 

20 

21from . import doccer 

22from .common import * 

23 

24__all__ = ['doccer'] 

25 

26from . import common 

27__all__ += common.__all__ 

28del common 

29 

30from scipy._lib._testutils import PytestTester 

31test = PytestTester(__name__) 

32del PytestTester