This function generates multi-resolution thin-plate spline basis functions. The basis functions are (descendingly) ordered in terms of their degrees of smoothness with a higher-order function corresponding to larger-scale features and a lower-order one corresponding to smaller-scale details. They are useful in the spatio-temporal random effects model.
mrts(knot, k, x = NULL, maxknot = 5000)
m by d matrix (d<=3) for m locations of d-dimensional knots as in ordinary splines. Missing values are not allowed.
the number (<=m) of basis functions.
n by d matrix of coordinates corresponding to n locations where the values of basis functions to be evaluated.
Default is NULL
, which uses the m by d matrix in knot
.
maximum number of knots to be used in generating basis functions. If maxknot
< m, a deterministic subset selection of knots will be used. For using all knots, set maxknot
>=m.
An mrts
object is generated. If x=NULL
(default) it returns
an m by k matrix of k basis function taken values at knots.
With x
given, it returns n by k matrix for basis functions taken values at x
.
Tzeng, S., & Huang, H. C. (2018). Resolution Adaptive Fixed Rank Kriging. Technometrics, https://doi.org/10.1080/00401706.2017.1345701.
Tzeng, S., & Huang, H. C. (2015). Multi-Resolution Spatial Random-Effects Models for Irregularly Spaced Data. arXiv preprint arXiv:1504.05659.
Nychka D, Hammerling D, Sain S, Lenssen N (2016). “LatticeKrig: Multiresolution Kriging Based on Markov Random Fields.” doi:10.5065/D6HD7T1R https://doi.org/10.5065/D6HD7T1R, R package version 8.4, https://github.com/NCAR/LatticeKrig.