math.gamma() function

math.gamma() returns the gamma function of x.

Function type signature
(x: float) => float

For more information, see Function type signatures.

Parameters

x

(Required) Value to operate on.

Examples

Return the gamma function of a value

import "math"

math.gamma(x: 2.12)// 1.056821007887572

Use math.gamma in map

import "sampledata"
import "math"

sampledata.float()
    |> map(fn: (r) => ({r with _value: math.gamma(x: r._value)}))

View example input and output


Was this page helpful?

Thank you for your feedback!