Skip to content
Open
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
8 changes: 4 additions & 4 deletions pysptk/sptk.py
Original file line number Diff line number Diff line change
Expand Up @@ -1193,8 +1193,8 @@ def lsp2lpc(lsp, has_gain=True, loggain=False, fs=None, itype=0):

Parameters
----------
lpc : array
LPC
lsp : array
LSP

has_gain : bool, optional
Whether input LPC has gain at the index 0 or not. Default is True.
Expand All @@ -1217,7 +1217,7 @@ def lsp2lpc(lsp, has_gain=True, loggain=False, fs=None, itype=0):

Returns
-------
lsp : array, shape (``order + 1``) if has_gain else (``order``)
lpc : array, shape (``order + 1``) if has_gain else (``order``)
LPC

raises
Expand All @@ -1228,7 +1228,7 @@ def lsp2lpc(lsp, has_gain=True, loggain=False, fs=None, itype=0):

See Also
--------
pysptk.sptk.lpc2lsp
pysptk.sptk.lsp2lpc
"""

return _sptk.lsp2lpc(lsp, has_gain, loggain, fs, itype)
Expand Down