
Estimate the eigenvalues of the sample autocovariance
function epsilon
.
obtain_autocov_eigenvalues(v, Y, epsilon = 1e-04)
Discretization points of the curves, by default
seq(from = 0, to = 1, length.out = 100)
.
Matrix containing the discretized values
of the functional time series. The dimension of the
matrix is
Value used to determine how many
eigenvalues will be returned. The eigenvalues
epsilon = 0.0001
.
A vector containing the epsilon
.
# NOT RUN {
N <- 100
v <- seq(from = 0, to = 1, length.out = 10)
sig <- 2
Y <- simulate_iid_brownian_bridge(N, v, sig)
lambda <- obtain_autocov_eigenvalues(v = v, Y = Y)
# }
Run the code above in your browser using DataLab