Vectorwise Trigonometry
- acos
Returns the arccosine of "numeric_exp" in radians. The arccosine is the angle whose cosine is "numeric_exp". - asin
Returns the arcsine of "numeric_exp" in radians. The arcsine is the angle whose sine is "numeric_exp". - atan
Returns the arctangent of "numeric_exp" in radians. The arctangent is the angle whose tangent is "numeric_exp". - atan2
Returns the arctangent of the x and y coordinates specified by "numeric_exp1" and "numeric_exp2", respectively, in radians. The arctangent is the angle whose tangent is "numeric_exp2" / "numeric_exp1". - cos
Returns the cosine of "numeric_exp" where "numeric_exp" is an angle expressed in radians. - sin
Returns the sine of "numeric_exp" where "numeric_exp" is an angle expressed in radians. - tan
Returns the tangent of "numeric_exp" where "numeric_exp" is an angle expressed in radians.
Parent topic: Vectorwise