Skip to content

Commit

Permalink
minor: added versionadded to docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
mrava87 committed May 18, 2024
1 parent 3066a4f commit 6c57fc3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pylops/signalprocessing/patch2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ class Patch2D(LinearOperator):
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
.. versionadded:: 2.3.0
Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
The first option is more computationally efficient, whilst the second is more memory efficient.
scalings : :obj:`tuple` or :obj:`list`, optional
Expand Down
2 changes: 2 additions & 0 deletions pylops/signalprocessing/patch3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ class Patch3D(LinearOperator):
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
.. versionadded:: 2.3.0
Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
The first option is more computationally efficient, whilst the second is more memory efficient.
scalings : :obj:`tuple` or :obj:`list`, optional
Expand Down
2 changes: 2 additions & 0 deletions pylops/signalprocessing/sliding1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ class Sliding1D(LinearOperator):
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
.. versionadded:: 2.3.0
Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
The first option is more computationally efficient, whilst the second is more memory efficient.
name : :obj:`str`, optional
Expand Down
2 changes: 2 additions & 0 deletions pylops/signalprocessing/sliding2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ class Sliding2D(LinearOperator):
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
.. versionadded:: 2.3.0
Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
The first option is more computationally efficient, whilst the second is more memory efficient.
name : :obj:`str`, optional
Expand Down
2 changes: 2 additions & 0 deletions pylops/signalprocessing/sliding3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ class Sliding3D(LinearOperator):
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
.. versionadded:: 2.3.0
Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
The first option is more computationally efficient, whilst the second is more memory efficient.
nproc : :obj:`int`, optional
Expand Down

0 comments on commit 6c57fc3

Please sign in to comment.