math.tan() function

math.tan() returns the tangent of the radian argument x.

Function type signature
(x: float) => float

For more information, see Function type signatures.

Parameters

x

(Required) Value to operate on.

Examples

Return the tangent of a radian value

import "math"

math.tan(x: 3.14)// -0.001592654936407223

Use math.tan in map

import "math"
import "sampledata"

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

View example input and output


Was this page helpful?

Thank you for your feedback!