bme_map | R Documentation |
Function that creates BMEmapping objects; objects that hold all the data information necessary for BME interpolation.
bme_map(ch, cs, zh, a, b)
ch |
A two-column matrix of coordinates for hard data locations. |
cs |
A two-column matrix of coordinates for soft data locations. |
zh |
A numeric vector of observed values at the hard data locations. |
a |
A numeric vector of lower bounds for soft interval data. |
b |
A numeric vector of upper bounds for soft interval data. |
A list containing the input arguments ch
, cs
,
zh
, a
, and b
, with class "BMEmapping"
.
ch <- matrix(c(1, 2, 3, 4), ncol = 2)
cs <- matrix(c(5, 6, 7, 8), ncol = 2)
zh <- c(10, 20)
a <- c(8, 9)
b <- c(12, 14)
obj <- bme_map(ch, cs, zh, a, b)
class(obj) # "BMEmapping"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.