R/pt_.R

Defines functions pt_

Documented in pt_

#' Distribution function non-standard student-t
#'
#' Computes the cdf.
#'
#' For internal use
#'
#' @keywords internal
#' @examples
#'
#' ## The function is currently defined as
#' function(x, df, mean, sd) {
#'   pt((x - mean) / sd, df, ncp = 0)
#' }
pt_ <-
  function(x, df, mean, sd) {
    pt((x - mean) / sd, df, ncp = 0)
  }
konkam/BNPdensity documentation built on March 14, 2024, 7:15 a.m.