- coef
A three-dimensional array of coefficients:
the first dimension corresponds to basis functions.
the second dimension corresponds to the number of
multivariate functional observations.
the third dimension corresponds to variables.
- basisobj
A functional basis object defining the basis,
as provided to fda::fd
, but there is no default.
- fdnames
A list of length 3, each member being a string vector
containing labels for the levels of the corresponding dimension
of the discrete data.
The first dimension is for a single character indicating the argument
values,
i.e. the variable on the functional domain.
The second is for replications, i.e. it denotes the functional observations.
The third is for functional variables' names.
- raw
A data frame containing the original discrete data.
Default is NULL, however, if provided, it must contain:
a column (indicated by the id_var
argument)
denoting the functional observations,
which must correspond to values in fdnames[[2]]
,
a column named as fdnames[[1]]
,
returning the argument values of each function
as many columns as the functional variables,
named as in fdnames[[3]]
,
containing the discrete functional values for each variable.
- id_var
A single character value indicating the column
in the raw
argument
containing the functional observations (as in fdnames[[2]]
),
default is NULL.
- B
A matrix with the inner products of the basis functions.
If NULL, it is calculated from the basis object provided.
Default is NULL.