powered by
Estimates replicate-specific cepstral coefficients and smoothed log-spectra using a Fourier cosine basis and Whittle-type approximation.
cep_get(perd, k0, frq)
A list with:
f
An N × k0 matrix of estimated cepstral coefficients.
N × k0
ff
An N × K matrix of smoothed log-spectra.
N × K
An matrix of periodogram.
Number of cepstral coefficients.
A vector of frequencies in [0,1].
[0,1]
set.seed(123) Y <- matrix(rnorm(20 * 5), nrow = 20, ncol = 5) len <- nrow(Y) L <- floor(len/2)-1 frq <- (1:L)/len perd <- perd_get(Y) result <- cep_get(perd = perd, k0 = 3, frq = frq)
Run the code above in your browser using DataLab