Dilog {gsl} | R Documentation |
Dilog functions as per the Gnu Scientific Library reference manual
section 7.11. These functions are declared in header file
gsl_sf_dilog.h
dilog(x, give=FALSE, strict=TRUE) complex_dilog(r, theta, give=FALSE, strict=TRUE)
x |
input: real values |
r,theta |
In |
give |
Boolean, with default |
strict |
Boolean, with |
All functions as documented in the GSL reference manual section 7.11.
Robin K. S. Hankin
http://www.gnu.org/software/gsl
x <- seq(from=0, to=0.1,by=0.01) cbind(x,"f(x)"=dilog(1-x)) #table 27.7, p1005