Member of the spectral analysis class.
c = icceps(a)
c = icceps(a, b)
Computes the inverse complex cepstrum of a real signal. [a, b] = cceps(c) and c = icceps(a, b) are inverse operations.
| Name | Description |
| a | Specifies a real signal. |
| b | Controls the delay in samples. b is an integer. |
| Name | Description |
| c | Returns the inverse complex cepstrum of a. |
X = [2, 3, 5, 7, 11, 13];
Y = cceps(X);
%X and XN are equal
XN = icceps(Y, 1)