getSSTsd:

Usage Arguments Examples

Usage

1
getSSTsd(psat, surf = -11)

Arguments

psat
surf

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##---- 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 (psat, surf = -11) 
{
    tzidx = psat$Z >= (surf)
    tzidx[is.na(tzidx)] = F
    temp = psat$T
    temp[tzidx == F] = NA
    tsd = apply(temp, 1, sd, na.rm = T)
    tsd[tsd == 0] = NA
    tsd
  }

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