R/transf.R

Defines functions transf

transf <- function(z){
  # This function applies the
  # transformation (2.6) of Mori(1988)
  # to the value z
  #
  # Inputs:
  # z: a given value
  #
  # Written by N. Ranathunga in September 2020

  out <- exp((z/2) - exp(-z))

}

Try the ciuupi2 package in your browser

Any scripts or data that you put into this service are public.

ciuupi2 documentation built on March 11, 2021, 5:06 p.m.