sin

Returns sine of the specified number.

Syntax

sin(x)

Parameters

Parameter

Type

Description

x

number

Numeric value (sine parameter in radians)

Return

Returns the sine of x.

Examples

Python

import math
x = 10
y = math.sin(x)

NexScript

x = 10
y = sin(x)