R/cfX_Gamma.R

Defines functions cfX_Gamma

Documented in cfX_Gamma

#' @title Characteristic function of the GAMMA distribution
#'
#' @description
#' \code{cfX_Gamma(t, alpha, beta, coef, niid)} evaluates the characteristic function \eqn{cf(t)}
#' of the GAMMA distribution with the shape parameter \code{alpha > 0} and the rate parameter \code{beta > 0}.
#'
#' \code{cfX_Gamma} is an ALIAS NAME of the more general function \code{cf_Gamma},
#' used to evaluate the characteristic function of a linear combination
#' of independent GAMMA distributed random variables.
#'
#' The characteristic function of the GAMMA distribution is defined by
#' \deqn{cf(t) = (1 - i*t/\beta)^(-\alpha).}
#'
#' @family Continuous Probability Distribution
#'
#' @seealso For more details see WIKIPEDIA:
#' \url{https://en.wikipedia.org/wiki/Gamma_distribution}.
#'
#' @param t vector or array of real values, where the CF is evaluated.
#' @param alpha the shape parameter \code{alpha > 0}. If empty, default value is \code{alpha = 1}.
#' @param beta the rate (\eqn{1/scale}) parameter \code{beta > 0}. If empty, default value is \code{beta = 1}.
#' @param coef vector of coefficients of the linear combination of Gamma distributed random variables.
#' If coef is scalar, it is assumed that all coefficients are equal. If empty, default value is \code{coef = 1}.
#' @param niid scalar convolution coeficient.
#'
#' @return Characteristic function \eqn{cf(t)} of the GAMMA distribution.
#'
#' @note Ver.: 16-Sep-2018 19:22:15 (consistent with Matlab CharFunTool v1.3.0, 24-Jun-2017 10:07:43).
#'
#' @example R/Examples/example_cfX_Gamma.R
#'
#' @export
#'
cfX_Gamma <- function(t, alpha, beta, coef, niid) {
  if (missing(alpha)) {
    alpha <- vector()
  }
  if (missing(beta)) {
    beta <- vector()
  }
  if (missing(coef)) {
    coef <- vector()
  }
  if (missing(niid)) {
    niid <- vector()
  }

  cf <- cf_Gamma(t, alpha, beta, coef, niid)

  return(cf)
}
gajdosandrej/CharFunToolR documentation built on June 3, 2024, 7:46 p.m.