You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
The PolyLog.jl package provides Julia implementations of real and
complex polylogarithms, including the real and complex dilogarithm and
trilogarithm.
Example
using PolyLog
# real polylogarithms for real argumentsreli1(1.0) # Re[Li_1(x)]reli2(1.0) # Re[Li_2(x)] (dilogarithm)reli3(1.0) # Re[Li_3(x)] (trilogarithm)reli4(1.0) # Re[Li_4(x)]reli(10, 1.0) # Re[Li_n(x)] for all integers n (here: n = 10)# complex polylogarithms for real or complex argumentsli0(1.0+1.0im) # Li_0(z)li1(1.0+1.0im) # Li_1(z)li2(1.0+1.0im) # Li_2(z) (dilogarithm)li3(1.0+1.0im) # Li_3(z) (trilogarithm)li4(1.0+1.0im) # Li_4(z)li5(1.0+1.0im) # Li_5(z)li6(1.0+1.0im) # Li_6(z)li(10, 1.0+1.0im) # Li_n(z) for all integers n (here: n = 10)