Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"spgl1": ("https://spgl1.readthedocs.io/en/latest/", None),
"pymc": ("https://www.pymc.io/", None),
"arviz": ("https://python.arviz.org/en/latest/", None),
"curvelets": ("https://curvelets.readthedocs.io/en/latest/", None),
}

# Generate autodoc stubs with summaries from code
Expand Down
10 changes: 10 additions & 0 deletions pylops/signalprocessing/udct.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,23 @@ class UDCT(LinearOperator):
"wavelet" creates a single ring-shaped window (bandpass filter only,
no angular components) at the highest scale with decimation=1.
Default is "curvelet".
transform_kind : {"real", "complex", "monogenic"}, optional
Type of transform to use:

- "real" (default): Real transform where each band captures both
positive and negative frequencies combined.
- "complex": Complex transform which separates positive and negative
frequency components into different bands. Each band is scaled by
:math:`\\sqrt{0.5}`.
dtype : :obj:`str`, optional
Type of elements in input array.
name : :obj:`str`, optional
Name of operator (to be used by :func:`pylops.utils.describe.describe`)

Attributes
----------
transform : :obj:`curvelets.numpy.UDCT`
Curvelets transform object.
dims : :obj:`tuple`
Shape of the array after the adjoint, but before flattening.

Expand Down
Loading