SignalProcessing
InverseComplexCepstrum
compute the inverse complex cepstrum of the signal
Calling Sequence
Parameters
Description
Examples
Compatibility
InverseComplexCepstrum(A, nd)
A
-
Array of real numeric values; the signal
nd
integer the number of samples of delay
The InverseComplexCepstrum(A) command computes the inverse complex cepstrum of the real data A.
nd is the number of samples of delay and the second output of ComplexCepstrum.
A must be a one-dimensional Array and must contain real numbers only.
with⁡SignalProcessing:
f1≔12.0:
f2≔20.0:
Fs≔1000:
signal≔Vector⁡210,i↦sin⁡2⋅f1⋅π⋅iFs+1.5⋅sin⁡2⋅f2⋅π⋅iFs,datatype=float8:
t≔Vector⁡210,i↦1.0⋅iFs,datatype=float8:
plot⁡t,signal
c,nd≔ComplexCepstrum⁡signal
ic≔InverseComplexCepstrum⁡c,nd
plot⁡t,ic
The SignalProcessing[InverseComplexCepstrum] command was introduced in Maple 2019.
For more information on Maple 2019 changes, see Updates in Maple 2019.
See Also
SignalProcessing[ComplexCepstrum]
Download Help Document