Compute the Hyperbolic arccosine of numeric data in R Programming – acosh() Function Last Updated : 10 Jun, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report acosh() function in R Language is used to compute the hyperbolic arccosine of numeric data. Syntax:acosh(x) Parameters: x: Numeric value, array or vector Example 1: Python3 1== # R program to illustrate # acosh function # Calling acosh() function over # different numbers acosh(0) acosh(1) Output: [1] NaN [1] 0 Example 2: Python3 1== # R program to illustrate # acosh function # Calling acosh() function over # different numbers acosh(3 / 2) acosh(2) Output: [1] 0.9624237 [1] 1.316958 Comment More infoAdvertise with us Next Article Calculate Hyperbolic sine of a value in R Programming - sinh() Function N nidhi_biet Follow Improve Article Tags : R Language R Math-Function Similar Reads Compute the Hyperbolic arcsine of numeric data in R Programming â asinh() Function asinh() function in R Language is used to compute the hyperbolic arcsine of numeric data. Syntax:asinh(x) Parameters: x: Numeric value, array or vector Example 1: Python3 1== # R program to illustrate # asinh function # Calling asinh() function over # different numbers asinh(0) asinh(1) Output: [1] 1 min read Compute the Hyperbolic arctangent of numeric data in R Programming - atanh() Function atanh() function in R Language is used to compute the hyperbolic arctangent of numeric data. Syntax: atanh(x) Parameters: x: Numeric value, array or vector. Example 1: Python3 # R program to illustrate # atanh function # Calling atanh() function over # different numbers atanh(0) atanh(1) atanh(0.9) 1 min read Calculate Hyperbolic cosine of a value in R Programming - cosh() Function cosh() function in R Language is used to calculate the hyperbolic cosine value of the numeric value passed to it as the argument. Syntax: cosh(x)Parameter: x: Numeric value Example 1:  Python3 # R code to calculate cosine of a value # Assigning values to variables x1 <- 90 x2 <- 30 # Using c 1 min read Calculate Hyperbolic tangent of a value in R Programming - tanh() Function tanh() function in R Language is used to calculate the hyperbolic tangent of the numeric value passed to it as argument. Syntax: tanh(x) Parameter: x: Numeric value Example 1: Python3 1== # R code to calculate hyperbolic tangent of a value # Assigning values to variables x1 <- -90 x2 <- -30 # 1 min read Calculate Hyperbolic sine of a value in R Programming - sinh() Function sinh() function in R Language is used to calculate the hyperbolic sine value of the numeric value passed to it as argument. Syntax: sinh(x) Parameter: x: Numeric value Example 1: Python3 1== # R code to calculate hyperbolic sine of a value # Assigning values to variables x1 <- -90 x2 <- -30 # 1 min read Calculate Inverse cosine of a value in R Programming - acos() Function acos() function in R Language is used to calculate the inverse cosine value of the numeric value passed to it as argument. Syntax: acos(x) Parameter: x: Numeric value Example 1: Python3 1== # R code to calculate inverse cosine of a value # Assigning values to variables x1 <- -1 x2 <- 0.5 # Usi 1 min read Like