Sin
Sin( value )
Sin( value )
Sin( value )
Sin( value )
sin( value )
Sin( value )
Description
The Sin
function is a trigonometric function which calculates
ratios of the lengths of the sides of right triangles. Sin
returns the sine of a Number, which is the ratio of the side
opposite to an acute angle in a right triangle to the hypotenuse.
Examples
The following query returns the sine of 0.5:
try
{
Value result = await client.Query(
Sin(0.5)
);
Console.WriteLine(result);
}
catch (Exception e)
{
Console.WriteLine($"ERROR: {e.Message}");
}
DoubleV(0.479425538604203)
result, err := client.Query(
f.Sin(0.5))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
fmt.Println(result)
}
0.479425538604203
System.out.println(
client.query(
Sin(Value(0.5))
).get());
0.479425538604203
client.query(
q.Sin(0.5)
)
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
0.479425538604203
result = client.query(
q.sin(0.5)
)
print(result)
0.479425538604203
try {
println(Await.result(
client.query(
Sin(0.5)
),
5.seconds
))} catch {
case unknown: Throwable => println("Error: " + unknown.getMessage())
}
0.479425538604203
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!