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:
# R code to calculate hyperbolic tangent of a value # Assigning values to variables x1 < - - 90 x2 < - - 30 # Using tanh() Function tanh(x1) tanh(x2) |
Output:
[1] -1 [1] -1
Example 2:
# R code to calculate hyperbolic tangent of a value # Assigning values to variables x1 < - pi x2 < - pi / 3 # Using tanh() Function tanh(x1) tanh(x2) |
Output:
[1] 0.9962721 [1] 0.7807144
Please Login to comment...