gsl (version 1.6-7)

Dilog: Dilog functions

Description

Dilog functions as per the Gnu Scientific Library reference manual section 7.11

Usage

dilog(x, give=FALSE, strict=TRUE)
complex_dilog(r,theta, give=FALSE, strict=TRUE)

Arguments

x
input: real values
r
input; see documentation for theta for details
theta
in complex_dilog, input taking real values. If this argument has its default value of NULL, interpret r as a complex-valued object. If non-null, interpret r as the Modulus, and t
give
Boolean, with default FALSE meaning to return just the answers, and TRUE meaning to return a status vector as well
strict
Boolean, with TRUE meaning to return NaN if nonzero status is returned by the GSL function (FALSE means to return the value: use with caution)

Details

All functions as documented in the GSL reference manual section 7.11.

References

http://www.gnu.org/software/gsl

Examples

Run this code
x <- seq(from=0, to=0.1,by=0.01)
cbind(x,"f(x)"=dilog(1-x))   #table 27.7, p1005

Run the code above in your browser using DataCamp Workspace