This file is indexed.

/usr/share/doc/python-pywt-doc/html/_sources/ref/swt-stationary-wavelet-transform.txt is in python-pywt-doc 0.3.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
86
87
88
89
90
91
92
.. _ref-swt:

.. currentmodule:: pywt
.. include:: ../substitutions.rst


Stationary Wavelet Transform
----------------------------

`Stationary Wavelet Transform (SWT) <http://en.wikipedia.org/wiki/Stationary_wavelet_transform>`_,
also known as *Undecimated wavelet transform* or *Algorithme à trous* is a translation-invariance
modification of the *Discrete Wavelet Transform* that does not decimate coefficients at every
transformation level.

Multilevel ``swt``
~~~~~~~~~~~~~~~~~~

.. function:: swt(data, wavelet, level[, start_level=0])

  Performs multilevel Stationary Wavelet Transform.

  :param data: |data|

  :param wavelet: |wavelet|

  :param int level: Required transform level. See the :func:`swt_max_level` function.

  :param int start_level: The level at which the decomposition will begin (it
      allows to skip a given number of transform steps and compute coefficients
      starting directly from the *start_level*)

  .. compound::

      Returns list of coefficient pairs in the form::

        [(cAn, cDn), ..., (cA2, cD2), (cA1, cD1)]

      where *n* is the *level* value.

      If *m* = *start_level* is given, then the beginning *m* steps are
      skipped::

        [(cAm+n, cDm+n), ..., (cAm+1, cDm+1), (cAm, cDm)]


Multilevel ``swt2``
~~~~~~~~~~~~~~~~~~~~~

.. function:: swt2(data, wavelet, level[, start_level=0])

  Performs multilevel 2D Stationary Wavelet Transform.

  :param data: 2D array with input data.

  :param wavelet: |wavelet|

  :param level: Number of decomposition steps to perform.

  :param start_level: The level at which the decomposition will begin.

  .. compound::

      The result is a set of coefficients arrays over the range of decomposition
      levels::

        [
            (cA_n,
                (cH_n, cV_n, cD_n)
            ),
            (cA_n+1,
                (cH_n+1, cV_n+1, cD_n+1)
            ),
            ...,
            (cA_n+level,
                (cH_n+level, cV_n+level, cD_n+level)
            )
        ]

      where *cA* is approximation, *cH* is horizontal details, *cV* is vertical
      details, *cD* is diagonal details, *n* is *start_level* and *m* equals
      *n+level*.


Maximum decomposition level - ``swt_max_level``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. function:: swt_max_level(input_len)

  Calculates the maximum level of Stationary Wavelet Transform for data of
  given length.

  :param input_len: Input data length.