COS in JS
Last updated
Last updated
Static function that returns the cosine of an angle in radians (JavaScript COS function Documentation).
Math.cos( expression )
expression:
Numeric expressions.
Same data type sent through parameter as a numeric expression.
CREATE OR REPLACE FUNCTION compute_cos(angle float)
RETURNS float
LANGUAGE JAVASCRIPT
AS
$$
return Math.cos(ANGLE);
$$
;
SELECT COMPUTE_COS(PI());