R/erfc.r

Defines functions erfc

Documented in erfc

#' Complementary error function
#' 
#' @export
erfc <- function(x) {
  return(2 * pnorm(x * sqrt(2), lower = FALSE))
} 
rogiersbart/rtoolz documentation built on Aug. 20, 2020, 2:48 p.m.