gsl (version 1.2-20)

Hyperg: Hypergeometric functions

Description

Hypergeometric functons as per the Gnu Scientific Library ref manual section 7.21 and Abramowitz and Stegun sections 13 and 17

Usage

hyperg_0F1(c, x, give=FALSE, strict=TRUE)
hyperg_1F1_int(m, n, x, give=FALSE, strict=TRUE)
hyperg_1F1(a, b, x, give=FALSE, strict=TRUE)
hyperg_U_int(m, n, x, give=FALSE, strict=TRUE)
hyperg_U(a, b, x, give=FALSE, strict=TRUE)
hyperg_2F1(a, b, c, x, give=FALSE, strict=TRUE)
hyperg_2F1_conj(aR, aI, c, x, give=FALSE, strict=TRUE)
hyperg_2F1_renorm(a, b, c, x, give=FALSE, strict=TRUE)
hyperg_2F1_conj_renorm(aR, aI, c, x, give=FALSE, strict=TRUE)
hyperg_2F0(a, b, x, give=FALSE, strict=TRUE)

Arguments

x
input: real values
c
input: real values
m
input: integer values
n
input: integer values
a
input: real values
b
input: real values
aR
input: real values
aI
input: real values
give
Boolean with TRUE meaning to return a list of three items: the value, an estimate of the error, and a status number.
strict
Boolean, with TRUE meaning to return NaN if status is an error.

Examples

Run this code
hyperg_0F1(0.1,0.55)

hyperg_1F1_int(2,3,0.555)
hyperg_1F1(2.12312,3.12313,0.555)
hyperg_U_int(2, 3, 0.555)
hyperg_U(2.234, 3.234, 0.555)

Run the code above in your browser using DataCamp Workspace