SCEI: Standardized Compound Event Indicator (SCEI)

View source: R/SCEI.R

SCEIR Documentation

Standardized Compound Event Indicator (SCEI)

Description

Compute SCEI based on monthly precipitation and temperature.

Usage

SCEI(mp,mt,ts)

Arguments

mp

monthly precipitation

mt

monthly temperature

ts

time scale

Value

The monthly SCEI series

References

Hao, Z. et al., 2019a. Statistical prediction of the severity of compound dry-hot events based on El Ni??o-Southern Oscillation. J. Hydrol., 572, 243-250.

Examples

mp=matrix(rnorm(120,0,1),ncol=1)
mt=matrix(rnorm(120,0,1),ncol=1)
ts=3; # ts<=12 otherwise you should revise line 98
nd<-SCEI(mp,mt,ts)
d=cbind(mp,mt,nd)
testd<-matrix(d, ncol=3,byrow=FALSE)

CompoundEvents documentation built on Nov. 10, 2022, 5:45 p.m.