Skip to content

Commit

Permalink
Merge pull request #7898 from ev-br/add_refg_scipy_signal
Browse files Browse the repository at this point in the history
DOC: cupyx/scipy: add missing names
  • Loading branch information
takagi committed Nov 8, 2023
2 parents f3536c6 + 41adaec commit 04d761c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
1 change: 1 addition & 0 deletions cupyx/scipy/signal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@

from cupyx.scipy.signal._iir_filter_conversions import zpk2tf # NOQA
from cupyx.scipy.signal._iir_filter_conversions import zpk2sos # NOQA
from cupyx.scipy.signal._iir_filter_conversions import zpk2ss # NOQA
from cupyx.scipy.signal._iir_filter_conversions import tf2zpk # NOQA
from cupyx.scipy.signal._iir_filter_conversions import tf2sos # NOQA
from cupyx.scipy.signal._iir_filter_conversions import tf2ss # NOQA
Expand Down
8 changes: 0 additions & 8 deletions cupyx/scipy/signal/_iir_filter_conversions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1838,14 +1838,6 @@ def ellipap(N, rp, rs):
ellip : Filter design function using this prototype
scipy.signal.elliap
References
----------
.. [1] Lutova, Tosic, and Evans, "Filter Design for Signal Processing",
Chapters 5 and 12.
.. [2] Orfanidis, "Lecture Notes on Elliptic Filter Design",
https://www.ece.rutgers.edu/~orfanidi/ece521/notes.pdf
"""
if abs(int(N)) != N:
raise ValueError("Filter order must be a nonnegative integer")
Expand Down
18 changes: 18 additions & 0 deletions docs/source/reference/scipy_signal.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ Filter design
residuez
invres
invresz
BadCoefficients


Matlab-style IIR filter design
Expand Down Expand Up @@ -127,6 +128,20 @@ Low-level filter design functions
:toctree: generated/

abcd_normalize
band_stop_obj
buttap
cheb1ap
cheb2ap
ellipap
lp2bp
lp2bp_zpk
lp2bs
lp2bs_zpk
lp2hp
lp2hp_zpk
lp2lp
lp2lp_zpk
normalize


LTI representations
Expand All @@ -137,12 +152,15 @@ LTI representations

zpk2tf
zpk2sos
zpk2ss
tf2zpk
tf2sos
tf2ss
ss2tf
ss2zpk
sos2tf
sos2zpk
cont2discrete


Continuous-time linear systems
Expand Down

0 comments on commit 04d761c

Please sign in to comment.