Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

COS

Returns the cosine of an angle.

Synopsis

COS(number)

Arguments

number An expression that resolves to a number that expresses an angle in degrees.

Description

The COS function takes an angle in degrees and returns the ratio of two sides of a right triangle. The ratio is the length of the side adjacent to the angle divided by the length of the hypotenuse. This ratio is in the range of 1 to -1 (inclusive).

Examples

The following example uses the COS function to return the cosine of an angle:

Dim MyAngle
MyAngle = 1.3;         ! Define angle in degrees.
PRINT COS(MyAngle);    ! Returns cosine ratio.

The following example uses the COS function to return the secant of an angle:

Dim MyAngle, MySecant
MyAngle = 1.3;                ! Define angle in degrees.
MySecant = 1 / Cos(MyAngle);  ! Calculate secant.
Print MySecant;               ! Secant in radians.

See Also

FeedbackOpens in a new tab