R/deriv.inv.logit.R

Defines functions deriv.inv.logit

Documented in deriv.inv.logit

#' deriv.inv.logit
#' 
#' Internal function used to compute the derivative of the logit function
#' 
#' 
#' @param x Value at which derivative is computed
#' @author Jan Gertheiss \email{jan.gertheiss@@agr.uni-goettingen.de}
deriv.inv.logit = function(x){
  exp(x)/((1+exp(x))^2)
  }
jeff-goldsmith/gfpca documentation built on May 19, 2019, 1:45 a.m.