cos

Returns cosine of the specified number.

Syntax

cos(x)

Parameters

Parameter

Type

Description

x

number

Numeric value (cosine parameter in radians)

Return

Returns cosine of x.

Examples

Python

import math
y = math.cos(0.5)

NexScript

y = cos(0.5)