Siebel eScript Language Reference > Siebel eScript Commands > The Math Object >

Math.sin() Method


This method returns the sine of an angle expressed in radians.

Syntax

Math.sin(number)

Parameter
Description

number

A numeric expression containing a number representing the size of an angle in radians

Returns

The sine of number, or NaN if number cannot be converted to a number.

Usage

The return value is between -1 and 1. The angle is specified in radians and can be either positive or negative.

To convert degrees to radians, multiply by Math.PI/180.

See Also

Math.acos() Method
Math.asin() Method
Math.atan() Method
Math.atan2() Method
Math.cos() Method
Math.tan() Method

Siebel eScript Language Reference