Name

cos

Examples
a = 0
inc = TWO_PI/25
for (i in 0:24) {
    line(i * 4, 50, i * 4, 50 + cos(a) * 40)
    a = a + inc
}
Description Calculates the cosine of an angle. This function expects the values of the angle parameter to be provided in radians (values from 0 to PI*2). Values are returned in the range -1 to 1.
Syntax
cos(angle)
Parameters
anglefloat: an angle in radians
Related sin
tan
radians
Creative Commons License