Icon Sin

Unit: Internal

Available In: Client and Server Applications

function Sin(Value: Double): Double

function Sin(Value: Integer): Double

The Sin function returns the sine 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 between -1 and 1.

Examples

X := Sin(0.23290);  // X is 0.2308001934780994
Image