Open In App

Calculate cosine of a value in R Programming – cos() Function

Last Updated : 01 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

cos() function in R Language is used to calculate the cosine value of the numeric value passed to it as argument.

Syntax: cos(x)

Parameter:
x: Numeric value

Example 1:




# R code to calculate cosine of a value
  
# Assigning values to variables
x1 <- 90
x2 <- 30
  
# Using cos() Function
cos(x1)
cos(x2)


Output:

[1] -0.4480736
[1] 0.1542514

Example 2:




# R code to calculate cosine of a value
  
# Assigning values to variables
x1 <- pi
x2 <- pi / 3
  
# Using cos() Function
cos(x1)
cos(x2)


Output:

[1] -1
[1] 0.5

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads