CepstrogramArray
CepstrogramArray[data] computes an array of cepstra on data.
CepstrogramArray[data, n] uses partitions of length n.
CepstrogramArray[data, n, d] uses partitions with offset d.
CepstrogramArray[data, n, d, wfun] applies a smoothing window wfun to each partition.
CepstrogramArray[data, n, d, wfun, m] pads partitions with zeros to length m prior to the computation of the transform.
Examples
Compute cepstrogram of audio:
audio = ExampleData[{"Audio", "Violin"}];
CepstrogramArray[audio]With specific partition size:
CepstrogramArray[audio, 1024, 512]Please visit the official Wolfram Language Reference for more details.