Exponential Penalty Matrix
Exponential Penalty Matrix
DESCRIPTION:
Computes the matrix defining the roughness penalty for functions
expressed in terms of a exponential basis.
USAGE:
exponpen(basisobj, Lfdobj=2)
REQUIRED ARGUMENTS:
- basisobj
-
An exponential basis object.
OPTIONAL ARGUMENTS:
- Lfdobj
-
Either a nonnegative integer or a linear differential operator object.
VALUE:
A symmetric matrix of order equal to the number of basis functions
defined by the exponential basis object. Each element is the inner product
of two exponential basis functions after applying the derivative or linear
differential operator defined by Lfdobj.
DETAILS:
A roughness penalty for a function x(t) is defined by
integrating the square of either the derivative of x(t) or,
more generally, the result of applying a linear differential operator
L to it. The most common roughness penalty is the integral of
the square of the second derivative D2x(t), and
this is the default. To apply this roughness penalty, the matrix of
inner products produced by this function is necessary.
EXAMPLES:
# set up an exponential basis with 3 basis functions.
basis <- create.exponential.basis(c(0,1),3,c(-1,0,1))
# compute the 3 by 3 matrix of inner products of second derivatives
penmat <- exponpen(basis)