Tan

Not available in this language yet.
Tan( value )
Tan( value )
Tan( value )
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
Tan( value )

Description

A trigonometric function that returns the tangent of a number, which is the ratio of the side opposite to an acute angle in a right triangle to the side adjacent.

Parameters

Argument Type Definition and Requirements

value

Number

Take the tangent of value.

Returns

A number which is the tangent of the value.

Examples

The query in the following example returns the tangent of 1.5:

System.out.println(
    client.query(
        Tan(Value(0.5))
    ).get());
client.query(
  q.Tan(0.5)
)
.then((ret) => console.log(ret))
println(Await.result(
  client.query(
    Tan(0.5)
  ),
  5.seconds
))
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
0.5463024898437905
0.5463024898437905
0.5463024898437905

Was this article helpful?

We're sorry to hear that.
Tell us how we can improve! documentation@fauna.com

Thank you for your feedback!