Icon Tan

Unit: Internal

Available In: Client and Server Applications

function Tan(Value: Double): Double

function Tan(Value: Integer): Double

The Tan function returns the tangent of the input parameter, which is an angle specified in radians. To convert an angle from degrees to radians, use the Radians function. The return value is a Double value.

Examples

X := Tan(0.23290);  // X is 0.23720443648121617
Image