File: main_namespace.rst

package info (click to toggle)
scipy 1.15.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 232,636 kB
  • sloc: cpp: 497,140; python: 327,782; ansic: 190,592; javascript: 89,553; fortran: 59,012; cs: 3,081; f90: 1,150; sh: 839; makefile: 780; pascal: 277; csh: 135; lisp: 134; xml: 56; perl: 51
file content (48 lines) | stat: -rw-r--r-- 1,624 bytes parent folder | download | duplicates (5)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
========================
The main SciPy namespace
========================

.. currentmodule:: scipy

The main ``scipy`` namespace has very few objects in it by design. Only show
generical functionality related to testing, build info and versioning, and one
class (`LowLevelCallable`) that didn't fit in one of the
submodules, are present:

.. autosummary::
   :toctree: generated/

   LowLevelCallable
   show_config
   test

The one public attribute is:

================== ===============================================
``__version__``    SciPy version string
================== ===============================================


Submodules
----------

=============  ==================================================
`cluster`      Clustering functionality
`constants`    Physical and mathematical constants and units
`datasets`     Load SciPy datasets
`fft`          Discrete Fourier and related transforms
`fftpack`      Discrete Fourier transforms (legacy)
`integrate`    Numerical integration and ODEs
`interpolate`  Interpolation
`io`           Scientific data format reading and writing
`linalg`       Linear algebra functionality
`misc`         Utility routines (deprecated)
`ndimage`      N-dimensional image processing and interpolation
`odr`          Orthogonal distance regression
`optimize`     Numerical optimization
`signal`       Signal processing
`sparse`       Sparse arrays, linear algebra and graph algorithms
`spatial`      Spatial data structures and algorithms
`special`      Special functions
`stats`        Statistical functions
=============  ==================================================