Cos
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Cos
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Given an angle in radians, calculates its cosine.
Function signature
COS(number: Number) => Number
Parameter | Description |
---|---|
Number | Angle in radians to calculate cosine for |
Examples
Formula | Return value |
---|---|
COS(PI() / 3) | 0.5 |
COS(PI() / 2) | 0 |
COS(PI()) | -1 |
Was this article helpful?