Description Usage Arguments Value C API Author(s) Examples
These functions generate B-spline basis functions.
bspline.basis
gives a basis of spline functions.
periodic.bspline.basis
gives a basis of periodic spline functions.
1 2 | bspline.basis(x, nbasis, degree = 3, names = NULL)
periodic.bspline.basis(x, nbasis, degree = 3, period = 1, names = NULL)
|
x |
Vector at which the spline functions are to be evaluated. |
nbasis |
The number of basis functions to return. |
degree |
Degree of requested B-splines. |
period |
The period of the requested periodic B-splines. |
names |
optional; the names to be given to the basis functions.
These will be the column-names of the matrix returned.
If the names are specified as a format string (e.g., "basis%d"), |
bspline.basis |
Returns a matrix with |
periodic.bspline.basis |
Returns a matrix with |
Access to the underlying C routines is available: see the header file ‘pomp.h’ for definition and documentation of the C API. At an R prompt, execute
1 | file.show(system.file("include/pomp.h",package="pomp"))
|
to view this file.
Aaron A. King kingaa at umich dot edu
1 2 3 4 5 6 7 8 |
Welcome to pomp version 1.19!
pomp version 2 is now available on https://kingaa.github.io/pomp/.
This new version contains many improvements but is not backward compatible.
To allow users time to modify their codes, 'pomp' version 2 will be provided as package 'pomp2' for a short while.
Around the middle of 2019, 'pomp2' will be renamed 'pomp' version 2.1 and will be released to CRAN. Until then, 'pomp' versions < 2 will continue to be available.
See the 'pomp version 2 upgrade guide' at https://kingaa.github.io/pomp/.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.