Tanh
Tanh( value )
Tanh( value )
Tanh( value )
Tanh( value )
tanh( value )
Tanh( value )
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
The number whose hyperbolic tangent should be returned. |
Examples
The following query returns the hyperbolic tangent of 0.5:
Value result = await client.Query(
Tanh(0.5)
);
Console.WriteLine(result);
DoubleV(0.46211715726000974)
result, err := client.Query(
f.Tanh(0.5))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
fmt.Println(result)
}
0.46211715726000974
System.out.println(
client.query(
Tanh(Value(0.5))
).get());
0.46211715726000974
client.query(
q.Tanh(0.5)
)
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
0.46211715726000974
result = client.query(
q.tanh(0.5)
)
print(result)
0.46211715726000974
println(Await.result(
client.query(
Tanh(0.5)
),
5.seconds
))
0.46211715726000974
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!