Skip to content

Commit

Permalink
Add new returns in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
narahahn authored and mgeier committed Mar 13, 2019
1 parent d8a5f0e commit da8b9ac
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions sfs/time/nfchoa.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,12 @@ def plane_25d(x0, r0, npw, fs, max_order=None, c=None, s2z=matchedz_zpk):
Second-order section filters :func:`scipy.signal.sosfilt`.
phaseshift : (N,) numpy.ndarray
Phase shift in radians.
selection : (N,) numpy.ndarray
Boolean array containing only ``True`` indicating that
all secondary source are "active" for NFC-HOA.
secondary_source_function : callable
A function that can be used to create the sound field of a
single secondary source. See `sfs.time.synthesize()`.
Examples
--------
Expand Down Expand Up @@ -221,6 +227,12 @@ def point_25d(x0, r0, xs, fs, max_order=None, c=None, s2z=matchedz_zpk):
Second-order section filters :func:`scipy.signal.sosfilt`.
phaseshift : (N,) numpy.ndarray
Phase shift in radians.
selection : (N,) numpy.ndarray
Boolean array containing only ``True`` indicating that
all secondary source are "active" for NFC-HOA.
secondary_source_function : callable
A function that can be used to create the sound field of a
single secondary source. See `sfs.time.synthesize()`.
Examples
--------
Expand Down Expand Up @@ -312,6 +324,12 @@ def plane_3d(x0, r0, npw, fs, max_order=None, c=None, s2z=matchedz_zpk):
Second-order section filters :func:`scipy.signal.sosfilt`.
phaseshift : (N,) numpy.ndarray
Phase shift in radians.
selection : (N,) numpy.ndarray
Boolean array containing only ``True`` indicating that
all secondary source are "active" for NFC-HOA.
secondary_source_function : callable
A function that can be used to create the sound field of a
single secondary source. See `sfs.time.synthesize()`.
"""
if max_order is None:
Expand Down Expand Up @@ -393,6 +411,12 @@ def point_3d(x0, r0, xs, fs, max_order=None, c=None, s2z=matchedz_zpk):
Second-order section filters :func:`scipy.signal.sosfilt`.
phaseshift : (N,) numpy.ndarray
Phase shift in radians.
selection : (N,) numpy.ndarray
Boolean array containing only ``True`` indicating that
all secondary source are "active" for NFC-HOA.
secondary_source_function : callable
A function that can be used to create the sound field of a
single secondary source. See `sfs.time.synthesize()`.
"""
if max_order is None:
Expand Down

0 comments on commit da8b9ac

Please sign in to comment.