Calculate cepstra from spectral samples (in columns of spec) through Discrete Cosine Transformation.
spec2cep(spec, ncep = 12, type = c("t2", "t1", "t3", "t4"))
Matrix of resulting cepstra.
Returns the DCT matrix that spec was multiplied by to give cep.
Input spectra (samples/time frames in columns).
Number of cepstra to return.
DCT Type.
Sebastian Krey krey@statistik.tu-dortmund.de
Daniel P. W. Ellis: https://www.ee.columbia.edu/~dpwe/resources/matlab/rastamat/
lpc2cep
testsound <- normalize(sine(400) + sine(1000) + square(250), "16")
pspectrum <- powspec(testsound@left, testsound@samp.rate)
aspectrum <- audspec(pspectrum, testsound@samp.rate)
cepstra <- spec2cep(aspectrum$aspectrum)
Run the code above in your browser using DataLab