Function Description
Function COS returns the cosine of the argument n.
The function returns the same datatype as the argument.
Examples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
SELECT COS(-1) FROM dual; Result: 0,54030230586814 SELECT COS(-0.5) FROM dual; Result: 0,877582561890373 SELECT COS(2) FROM dual; Result: -0,416146836547142 |