TAN

Description

Function that returns the tangent of the angle sent through parameters (must be measured in radians) (TAN in Transact-SQL).

The cosine is defined as: y=tan(x) y = tan(x) Where: - Range: R\mathbb{R} - Domain: R{π2+πnnZ}\mathbb{R}-\{\frac{\pi}{2}+\pi n | \forall n \in \mathbb{Z}\}

Sample Source Pattern

Syntax

TAN( expression )

Arguments

expression: Numeric float expression, where expression is in R\mathbb{R} and its measure is radians.

Return Type

Numeric float in R\mathbb{R}.

Examples

SELECT TAN(PI())

Last updated