简体   繁体   中英

Exponential Integral in Julia

I am looking for an alternate function of scipy.special.expi() in julia. This function finds exponential integral Ei . More details can be found here: https://docs.scipy.org/doc/scipy/reference/generated/scipy.special.expi.html

Please suggest a solution to this issue.

Thanks in advance!

It looks like https://github.com/JuliaMath/SpecialFunctions.jl has an implementation.

As suggested by @Oscar, the equivalent alternative to scipy.special.expi() in julia can be implemented as follows:

using SpecialFunctions
#to find the exponential integral of x
expinti(x)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM