gen_hypergeo {cbbinom} | R Documentation |
gen_hypergeo
computes generalized hypergeometric function.
gen_hypergeo(U, L, x, tol, max_iter, check_mode, log)
U , L |
Numeric vectors for upper and lower values. |
x |
Numeric (1L) as common ratio. |
tol |
Numeric (1L) as convergence tolerance. |
max_iter |
Integer (1L) as iteration limit. |
check_mode |
Logical (1L) indicating whether the mode of |
log |
Logical (1L) indicating whether result is given as log(result). |
Result of computation. Warnings are issued if failing to converge.
Change log:
0.1.0 Xiurui Zhu - Initiate the function.
Xiurui Zhu
gen_hypergeo(U = c(1.1, 0.2, 0.3), L = c(10.1, 4 * pi), x = 1,
max_iter = 10000L, tol = 1e-6, check_mode = TRUE, log = FALSE)