eigenFunction | R Documentation |
Produce Eigen-function values based on new locations
eigenFunction(new_location, original_location, Phi)
new_location |
A location matrix |
original_location |
A location matrix |
Phi |
An eigenvector matrix |
A predictive estimate matrix
pesudo_sequence <- seq(-5, 5, length = 2)
original_location <- as.matrix(expand.grid(x = pesudo_sequence, y = pesudo_sequence))
new_location <- matrix(c(0.1, 0.2), nrow = 1, ncol = 2)
Phi <- matrix(c(1, 0, 0, 0), nrow = 4, ncol = 1)
thin_plate_matrix <- eigenFunction(new_location, original_location, Phi)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.