File: index.rst

package info (click to toggle)
scipy 1.17.0-1exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 235,340 kB
  • sloc: cpp: 506,914; python: 357,038; ansic: 215,028; javascript: 89,566; fortran: 19,308; cs: 3,081; f90: 1,150; sh: 860; makefile: 519; pascal: 284; lisp: 134; xml: 56; perl: 51
file content (85 lines) | stat: -rw-r--r-- 2,606 bytes parent folder | download | duplicates (3)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
.. _user_guide:

****************
SciPy User Guide
****************

.. currentmodule:: scipy

.. sectionauthor:: Travis E. Oliphant

SciPy is a collection of mathematical algorithms and convenience functions built
on NumPy_ . It adds significant power to Python by providing the user with
high-level commands and classes for manipulating and visualizing data.

.. _NumPy: https://numpy.org

Subpackages and User Guides
---------------------------

SciPy is organized into subpackages covering different scientific
computing domains. These are summarized in the following table, with
their user guide linked in the Description and User Guide column (if available):

==================    ========================================
Subpackage            Description and User Guide
==================    ========================================
``cluster``           Clustering algorithms
``constants``         Physical and mathematical constants
``differentiate``     Finite difference differentiation tools
``fft``               :doc:`./fft`
``fftpack``           Fast Fourier Transform routines (legacy)
``integrate``         :doc:`./integrate`
``interpolate``       :doc:`./interpolate`
``io``                :doc:`./io`
``linalg``            :doc:`./linalg`
``ndimage``           :doc:`./ndimage`
``odr``               Orthogonal distance regression
``optimize``          :doc:`./optimize`
``signal``            :doc:`./signal`
``sparse``            :doc:`./sparse`
``spatial``           :doc:`./spatial`
``special``           :doc:`./special`
``stats``             :doc:`./stats`
==================    ========================================

There are also additional user guides for these topics:

- :doc:`./arpack` - Eigenvalue problem solver using iterative methods
- :doc:`./csgraph` - Compressed Sparse Graph Routines

For guidance on organizing and importing functions from SciPy subpackages, refer to the `Guidelines for Importing Functions from SciPy <https://scipy.github.io/devdocs/reference/index.html#guidelines-for-importing-functions-from-scipy>`_.

For information on support for parallel execution and thread safety, see
:ref:`scipy_parallel_execution` and :ref:`scipy_thread_safety`.

.. raw:: latex

   \addtocontents{toc}{\protect\setcounter{tocdepth}{2}}

.. toctree::
   :caption: User guide
   :maxdepth: 1
   :hidden:

   fft
   integrate
   interpolate
   io
   linalg
   ndimage
   optimize
   signal
   sparse
   spatial
   special
   stats
   arpack
   csgraph
   parallel_execution
   thread_safety


.. raw:: latex

   \addtocontents{toc}{\protect\setcounter{tocdepth}{1}}