SignalProcessing
ComplexCepstrum
compute the complex cepstrum of the signal
Calling Sequence
Parameters
Description
Examples
Compatibility
ComplexCepstrum(A)
A
-
Array of real numeric values; the signal
The ComplexCepstrum(A) command uses the Fourier transform to compute the complex cepstrum of a signal and the number of samples of delay.
A must be an 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:
c,nd≔ComplexCepstrum⁡signal
plot⁡t,c
The SignalProcessing[ComplexCepstrum] command was introduced in Maple 2019.
For more information on Maple 2019 changes, see Updates in Maple 2019.
See Also
SignalProcessing[RealCepstrum]
Download Help Document