Tanh
Tanh( value )
Tanh( value )
Tanh( value )
Tanh( value )
tanh( value )
Tanh( value )
Returns
A Number which is the hyperbolic tangent of value
.
Examples
The following query returns the hyperbolic tangent of 0.5:
try
{
Value result = await client.Query(
Tanh(0.5)
);
Console.WriteLine(result);
}
catch (Exception e)
{
Console.WriteLine($"ERROR: {e.Message}");
}
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
try {
println(Await.result(
client.query(
Tanh(0.5)
),
5.seconds
))} catch {
case unknown: Throwable => println("Error: " + unknown.getMessage())
}
0.46211715726000974
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
Visit Fauna's Discourse forums
or email docs@fauna.com
Thank you for your feedback!