Owning Class: spectral analysis
Requires: MathScript RT Module
c = iccepstrum(a)
c = iccepstrum(a, b)
Legacy Name: icceps
Computes the inverse complex cepstrum of a real signal. [a, b] = ccepstrum(c) and c = iccepstrum(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 = ccepstrum(X);
%X and XN are equal
XN = iccepstrum(Y, 1)