gamma_int {nimblewomble}R Documentation

Incomplete Gamma Function

Description

For internal use only. Use integration as a limit of a sum to numerically compute the incomplete gamma integral

Usage

gamma_int(x, a, b)

Arguments

x

gamma quantile

a

shape parameter

b

scale parameter

Value

A scalar value of the integral. For internal use only.

Author(s)

Aritra Halder <aritra.halder@drexel.edu>,
Sudipto Banerjee <sudipto@ucla.edu>

Examples


#####################
# Internal use only #
#####################
# Example usage in nimblewomble::wombling_matern1(...) or,
# nimblewomble::wombling_matern2(...)
require(nimble)

Gint = compileNimble(gamma_int)
Gint(x = 1, a = 1, b = 1)


[Package nimblewomble version 0.1.0 Index]