gsl (version 1.2-20)

Laguerre: Laguerre functions

Description

Laguerre functons as per the Gnu Scientific Library reference manual section 7.22

Usage

laguerre_1(a, x, give=FALSE, strict=TRUE)
laguerre_2(a, x, give=FALSE, strict=TRUE)
laguerre_3(a, x, give=FALSE, strict=TRUE)
laguerre_n(n, a, x, give=FALSE, strict=TRUE)

Arguments

a
input: real values
x
input: real values
n
input: integer values
give
Boolean, with TRUE meaning to return error info
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)

example

laguerre_1(0.1,0.3) laguerre_2(0.1,0.3) laguerre_3(0.1,0.3) laguerre_n(4,0.1,0.3)