1.. _routines:
2
3********
4Routines
5********
6
7In this chapter routine docstrings are presented, grouped by functionality.
8Many docstrings contain example code, which demonstrates basic usage
9of the routine. The examples assume that NumPy is imported with::
10
11  >>> import numpy as np
12
13A convenient way to execute examples is the ``%doctest_mode`` mode of
14IPython, which allows for pasting of multi-line examples and preserves
15indentation.
16
17.. toctree::
18   :maxdepth: 2
19
20   routines.array-creation
21   routines.array-manipulation
22   routines.bitwise
23   routines.char
24   routines.ctypeslib
25   routines.datetime
26   routines.dtype
27   routines.dual
28   routines.emath
29   routines.err
30   routines.fft
31   routines.functional
32   routines.help
33   routines.indexing
34   routines.io
35   routines.linalg
36   routines.logic
37   routines.ma
38   routines.math
39   routines.matlib
40   routines.other
41   routines.padding
42   routines.polynomials
43   random/index
44   routines.set
45   routines.sort
46   routines.statistics
47   routines.testing
48   routines.window
49