R/slope2w.R

Defines functions slope2w

Documented in slope2w

#' @title slope2w
#'
#' @description
#' \code{slope2w} width represented as parameter of logistic function have to be
#' multiplied by four to get a slope in hypertangent function. This function
#' computes width as an inverse of slope after conversion to hypertangent units
#'
#' @param slope
#'
#' @author Kamil Jaron \email{kamiljaron at gmail.com}
#'
#' @export

slope2w <- function(slope){
    return(4 / slope)
}
KamilSJaron/ConjunctionStats documentation built on May 7, 2019, 12:06 p.m.