The COS()
function returns the cosine of a number. To be more specific, it returns the cosine of a number in the radian float value.
Figure 1 shows the mathematical representation of the COS()
function.
This
COS()
function only works for right-angled triangles.
COS(number)
This function requires a number as a parameter.
COS()
returns the cosine of a number (radian float value) that is sent as a parameter.
/*example showing how to use COS(X)*/ -- positive number select COS(10); -- negative number select COS(-6); -- fractional number select COS(4.6);
RELATED TAGS
CONTRIBUTOR
View all Courses