
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
tanh() function in C++ STL
The tanh() function returns the hyperbolic tangent of an angle given in radians. It is an inbuilt function in C++ STL.
The syntax of the tanh() function is given as follows.
tanh(var)
As can be seen from the syntax, the function tanh() accepts a parameter var of data type float, double or long double. It returns the hyperbolic tangent of var.
A program that demonstrates tanh() in C++ is given as follows.
Example
#include <iostream> #include <cmath> using namespace std; int main() { double d = 5, ans; ans = tanh(d); cout << "tanh("<< d <<") = " << ans << endl; return 0; }
output
tanh(5) = 0.999909
In the above program, first the variable d is initialized. Then hyperbolic tangent of d is found using tanh() and stored in ans. Finally the value of ans is displayed. This is demonstrated by the following code snippet.
double d = 5, ans; ans = tanh(d); cout << "tanh("<< d <<") = " << ans << endl;
If the value is provided in degrees, it is converted to radians before using tanh() function.as it returns the hyperbolic tangent of an angle given in radians A program to demonstrate this is as follows −
Example
#include <iostream> #include <cmath> using namespace std; int main() { double degree = 60, ans; degree = degree * 3.14159/180; ans = tanh(degree); cout << "tanh("<<degree<<") = " << ans <<endl; return 0; }
Output
tanh(1.0472) = 0.780714
In the above program, the value is given in degree. So it is converted into radians and then the hyperbolic tangent is obtained using tanh(). Finally, the output is displayed. This is demonstrated by the following code snippet.
double degree = 60, ans; degree = degree * 3.14159/180; ans = tanh(degree); cout << "tanh("<<degree<<") = " << ans <<endl;
- Related Articles
- tanh() function in PHP
- PHP tanh() Function
- tanh( ) function for complex Number in C++
- sinh() function in C++ STL
- cosh() function in C++ STL
- atanh() function in C++ STL
- acosh() function in C++ STL
- asinh() function in C++ STL
- acos() function in C++ STL
- atan2() function in C++ STL
- iswalnum() function in C++ STL
- iswalpha() function in C++ STL
- lldiv() function in C++ STL
- negate function in C++ STL
- iswpunct() function in C++ STL
