hyperg_1F1_vec_b | R Documentation |
These are internal C++ functions which wrap hypergeometric functions from GSL with vectorization. These are for particular use cases in this package, and direct access by the user is not assumed.
hyperg_1F1_vec_b(a, bvec, x)
hyperg_2F1_mat_a_vec_c(Amat, b, cvec, x)
a , b |
Parameters of hypergeometric functions; passed as |
bvec , cvec |
Parameters of hypergeometric functions; passed as
|
x |
Argument of hypergeometric functions; passed as |
Amat |
Parameter of hypergeometric functions; passed as
|
Return a list via Rcpp::List
of the following:
$val
Evaluation result, numeric
$err
Absolute error, numeric
$status
Error code, integer
In hyperg_1F1_vec_b
, these are vectors from
Rcpp::NumericVector
and Rcpp::IntegerVector
, whereas in
hyperg_2F1_mat_a_vec_c
, they are matrices
from Rcpp::NumericMatrix
and Rcpp::IntegerMatrix
.
hyperg_1F1_vec_b()
: wrapper of gsl_hyperg_1F1_e()
, looping along bvec
hyperg_2F1_mat_a_vec_c()
: wrapper of gsl_hyperg_2F1_e()
, looping along Amat
and
recycling cvec
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.