Sinh
Sinh( value )
Sinh( value )
Sinh( value )
Sinh( value )
sinh( value )
Sinh( value )
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
The number whose hyperbolic sine should be returned. |
Examples
The following query returns the hyperbolic sine of 0.5:
Value result = await client.Query(
Sinh(0.5)
);
Console.WriteLine(result);
DoubleV(0.5210953054937474)
result, err := client.Query(
f.Sinh(0.5))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
fmt.Println(result)
}
0.5210953054937474
System.out.println(
client.query(
Sinh(Value(0.5))
).get());
0.5210953054937474
client.query(
q.Sinh(0.5)
)
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
0.5210953054937474
Not available in this language yet.
println(Await.result(
client.query(
Sinh(0.5)
),
5.seconds
))
0.5210953054937474
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!