Description Usage Arguments Value Examples
View source: R/generate.eigen.cubic.R
Generates eigendecomposition from grid points from an interval.
1 | generate.eigen.cubic(N = 1000, a = 0, b = 1)
|
N |
The number of grid points. It should be an integer. The default value is 1000. |
a |
The lower limit of the interval used for grid points. The default value is 0. |
b |
The upper limit of the interval used for grid points. The default value is 1. |
It returns (and saves) a list of following components:
e |
A list of two elements of "values" and "vectors", which refer respectively, the eigenvalues and eigenfunctions of reproducing kernel for cubic splines at the pre-selected grid points. |
xg |
A vector of grid points. |
1 2 3 4 | ## Not run:
eigen_res <- generate.eigen.cubic(N=1000,a=2,b=3)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.