create_A_matrix | R Documentation |
Define matrix A of the functional model
create_A_matrix(t_nogap, jumps, n_seasonal)
t_nogap |
A |
jumps |
A |
n_seasonal |
An |
Matrix A in order to compute the functional component of the model in a linear fashion
n= 10*365
jump_vec <- c(200, 300, 500)
nbr_sin = 2
A <- create_A_matrix(1:n, jump_vec, n_seasonal = nbr_sin)
head(A)
A <- create_A_matrix(1:n, jumps = NULL, n_seasonal = nbr_sin)
head(A)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.