create_A_matrix {gmwmx} | R Documentation |
Define matrix A of the functional model
Description
Define matrix A of the functional model
Usage
create_A_matrix(t_nogap, jumps, n_seasonal)
Arguments
t_nogap |
A |
jumps |
A |
n_seasonal |
An |
Value
Matrix A in order to compute the functional component of the model in a linear fashion
Examples
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)
[Package gmwmx version 1.0.3 Index]