Skip to content

Commit

Permalink
DOC: Remove custom :button_text directive option
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Apr 30, 2024
1 parent 96a65e1 commit 2191163
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
3 changes: 0 additions & 3 deletions doc/source/ref/cwt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ A variety of continuous wavelets have been implemented. A list of the available
wavelet names compatible with ``cwt`` can be obtained by:

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> wavelist = pywt.wavelist(kind='continuous')
Expand Down Expand Up @@ -208,7 +207,6 @@ sampled at 100 Hz, a center frequency of 1.0 corresponds to ~100 Hz at
particular wavelet, one would analyze a signal using ``scales >= 2``.

.. try_examples::
:button_text: Try it in your browser!

>>> import numpy as np
>>> import pywt
Expand Down Expand Up @@ -239,7 +237,6 @@ frequency fs. This function is useful for specifying the transform as a function
of frequency directly.

.. try_examples::
:button_text: Try it in your browser!

>>> import numpy as np
>>> import pywt
Expand Down
2 changes: 0 additions & 2 deletions doc/source/ref/signal-extension-modes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ computations can be performed with the `periodization`_ mode:
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> print(pywt.Modes.modes)
Expand All @@ -106,7 +105,6 @@ Notice that you can use any of the following ways of passing wavelet and mode
parameters:

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> (a, d) = pywt.dwt([1,2,3,4,5,6], 'db2', 'smooth')
Expand Down
9 changes: 0 additions & 9 deletions doc/source/ref/wavelets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ Custom discrete wavelets are also supported through the
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> wavelet = pywt.Wavelet('db1')
Expand Down Expand Up @@ -130,7 +129,6 @@ Custom discrete wavelets are also supported through the
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> def format_array(arr):
... return "[%s]" % ", ".join(["%.14f" % x for x in arr])
Expand Down Expand Up @@ -174,7 +172,6 @@ Approximating wavelet and scaling functions - ``Wavelet.wavefun()``
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> wavelet = pywt.Wavelet('db2')
Expand All @@ -190,7 +187,6 @@ Approximating wavelet and scaling functions - ``Wavelet.wavefun()``
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> wavelet = pywt.Wavelet('bior3.5')
Expand Down Expand Up @@ -244,7 +240,6 @@ from plain Python lists of filter coefficients and a *filter bank-like* object.
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt, math
>>> c = math.sqrt(2)/2
Expand Down Expand Up @@ -279,7 +274,6 @@ from plain Python lists of filter coefficients and a *filter bank-like* object.
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> wavelet = pywt.ContinuousWavelet('gaus1')
Expand Down Expand Up @@ -335,7 +329,6 @@ from plain Python lists of filter coefficients and a *filter bank-like* object.
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> wavelet = pywt.ContinuousWavelet('gaus1')
Expand Down Expand Up @@ -366,7 +359,6 @@ Approximating wavelet functions - ``ContinuousWavelet.wavefun()``
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> wavelet = pywt.ContinuousWavelet('gaus1')
Expand All @@ -384,7 +376,6 @@ Approximating wavelet functions - ``ContinuousWavelet.wavefun()``
**Example:**

.. try_examples::
:button_text: Try it in your browser!

>>> import pywt
>>> wavelet = pywt.DiscreteContinuousWavelet('db1')
Expand Down

0 comments on commit 2191163

Please sign in to comment.