R/rt_.R

Defines functions rt_

Documented in rt_

#' Random number generator non-standard Student-t
#'
#' Computes a random number.
#'
#' For internal use
#'
#' @keywords internal
#' @examples
#'
#' ## The function is currently defined as
#' function(n, df, mean, sd) {
#'   mean + sd * rt(n, df, ncp = 0)
#' }
rt_ <-
  function(n, df, mean, sd) {
    mean + sd * rt(n, df, ncp = 0)
  }

Try the BNPdensity package in your browser

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

BNPdensity documentation built on April 1, 2023, 12:10 a.m.