
- 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
asinh() function in C++ STL
The asinh() function returns the arc hyperbolic sine or the inverse hyperbolic sine of an angle given in radians. It is an inbuilt function in C++ STL.
The syntax of the asinh() function is given as follows.
asinh(var)
As can be seen from the syntax, the function asinh() accepts a parameter var of data type float, double or long double. The value of this parameter can be anything i.e negative, positive or 0. It returns the arc hyperbolic sine of var.
A program that demonstrates asinh() in C++ is given as follows −
Example
#include <iostream> #include <cmath> using namespace std; int main() { double d = -5, ans; ans = asinh(d); cout << "asinh("<< d <<") = " << ans << endl; return 0; }
Output
asinh(-5) = -2.31244
In the above program, first the variable d is initialized. Then arc hyperbolic sine of d is found using asinh() and stored in ans. Finally the value of ans is displayed. This is demonstrated by the following code snippet.
double d = -5, ans; ans = asinh(d); cout << "asinh("<< d <<") = " << ans << endl;
The result obtained by using the asinh() function can be converted into degrees and displayed. A program to demonstrate this is as follows.
Example
#include <iostream> #include <cmath> using namespace std; int main() { double d = -5, ans; ans = asinh(d); ans = ans*180/3.14159; cout << "asinh("<< d <<") = " << ans << endl; return 0; }
Output
asinh(-5) = -132.493
In the above program, the arc hyperbolic sine is obtained using asinh(). Then this value is converted into degrees. Finally, the output is displayed. This is demonstrated by the following code snippet.
double d = -5, ans; ans = asinh(d); ans = ans*180/3.14159; cout << "asinh("<< d <<") = " << ans << endl;
- Related Articles
- C++ STL asinh() function
- asinh() function in PHP
- PHP asinh() Function
- sinh() function in C++ STL
- cosh() function in C++ STL
- atanh() function in C++ STL
- tanh() function in C++ STL
- acosh() 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
