lpc2cep | R Documentation |
Convert the LPC coefficients in each column of a
into frames of cepstra.
lpc2cep(a, nout = nrow(a))
a |
Matrix of LPC coefficients. |
nout |
Number of cepstra to produce. |
Matrix of cepstra (one column per time frame).
Sebastian Krey krey@statistik.tu-dortmund.de
Daniel P. W. Ellis: https://www.ee.columbia.edu/~dpwe/resources/matlab/rastamat/
spec2cep
testsound <- normalize(sine(400) + sine(1000) + square(250), "16")
pspectrum <- powspec(testsound@left, testsound@samp.rate)
aspectrum <- audspec(pspectrum, testsound@samp.rate)
lpcas <- dolpc(aspectrum$aspectrum, 8)
cepstra <- lpc2cep(lpcas)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.