pixtomap:

Usage Arguments Examples

Usage

1
pixtomap(M, px, py)

Arguments

M
px
py

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (M, px, py) 
{
    lgt = length(px)
    latlong = cbind((numeric(lgt) + 1), py, (numeric(lgt) + 1), 
        px) %*% M
    lat = latlong[, 2]
    long = latlong[, 1]
    cbind(long, lat)
  }

galuardi/hmmwoa documentation built on May 16, 2019, 5:37 p.m.