Description Usage Arguments Details Value Examples
Compute composite measures, GCSM or CMSC, on temporal windows.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | cmsc_tw(
xxx,
yyy,
rescale = FALSE,
xmin = NA_real_,
xmax = NA_real_,
ymin = NA_real_,
ymax = NA_real_,
comp = "si"
)
cmsc_e1_tw(
xxx,
yyy,
rescale = FALSE,
xmin = NA_real_,
xmax = NA_real_,
ymin = NA_real_,
ymax = NA_real_,
comp = "si"
)
cmsc_e2_tw(
xxx,
yyy,
rescale = FALSE,
xmin = NA_real_,
xmax = NA_real_,
ymin = NA_real_,
ymax = NA_real_,
comp = "si"
)
gcsm_tw(
xxx,
yyy,
rescale = FALSE,
xmin = NA_real_,
xmax = NA_real_,
ymin = NA_real_,
ymax = NA_real_,
comp = "si"
)
|
xxx |
A 3-d array with the 3rd dimension representing time. |
yyy |
The other 3-d array. |
rescale |
Rescale or not before computation. |
xmin, xmax, ymin, ymax |
Normalization parameters. If |
comp |
Variable to return. If |
These functions slide the temporal window over space. Missing values are
omitted. Normalization parameters are used to rescale xxx
and yyy
, and
determine the global minimum (min) and maximum (max). If rescale
is
TRUE
, xxx
and yyy
are rescaled to (xxx-xmin)/(xmax-xmin)
and
(yyy-ymin)/(ymax-ymin)
; and set min=0
, max=1
. If FALSE
,
min=min(xmin,ymin)
, max=max(xmax,ymax)
. OpenMP is used for parallel
computing.
A matrix.
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.