HypgF1:
-------------------------------------------------------------------------------
Computes the value of the hypergeometric function
F(alpha,1;gamma,x)
Examples are:
arctanh(x)/x = F(1/2,1;3/2; x^2) = HypgF1(1/2,3/2, x^2)
log(1+x) /x = F( 1,1; 2;-x ) = HypgF1( 1, 2, -x)
arctan(x) /x = F(1/2,1;3/2;-x^2) = HypgF1(1/2,3/2,-x^2)
-------------------------------------------------------------------------------
Form:
[F, n] = HypgF1( alpha, gamma, x )
[F, n] = HypgF1( alpha, gamma, x, tol )
[F, n] = HypgF1( alpha, gamma, x, tol, nMax )
-------------------------------------------------------------------------------
------
Inputs
------
alpha Argument
gamma Argument
x Argument
tol Tolerance (default 1.e-8);
nMax Maximum number of iterations
-------
Outputs
-------
F Value of fraction
n Number of iterations
-------------------------------------------------------------------------------
Children: