/
cos

cos

Description

The cos command is used to calculate the cosine for any input angle. The input units are in degrees.

Picture the unit circle (a circle of radius 1.0 centered about the origin). If you were to imagine a unit vector rotating inside of the unit circle, the angle (in degrees) that the unit vector makes with the positive x-axis is the input argument theta. The x-coordinate of the endpoint of the unit vector is the return value of the cos function.

Functional area

Math

Command syntax

Syntax

cos value

Arguments

NameTypeRequiredComments
valuefloatyesFloat value of an angle in degrees.

Flags

None

Return value

float

Returns a floating point value in the range [-1.0, 1.0]

Examples

float $temp = (cos (30)); 
// declares a variable for the cosine function
 
print (string ($temp)); 
// prints the output of the cosine function

Additional information

Related commands