-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exploit new expint(n,z) function #244
Comments
Thanks @stevengj ! |
|
It looks like what you really need for the Gomperz CDF is the scaled function |
Might be good to define a few additional functions in terms of the new
expint
functions:Ei
function (probably call itexpinti
) (add expinti function #257)sinint
andcosint
functions for complex argumentsli(x) = Ei(log(x))
(too trivial? or does it do something interesting for complex args?).expintx(ν,z) = exp(z) * expint(ν, z)
: expintx function — exponentially scaled expint #249expintx
as commented here: WIP: add loggamma(a,z) #283(Even for real arguments, the
expint
implementation seems to be faster than what we have now forgamma_inc
, although it might not be as accurate for the "lower" incomplete gamma function. I feel like we should just have agamma(n,x)
method that returns the upper incomplete gamma function, similar to Mathematica, in any case.)The text was updated successfully, but these errors were encountered: