The sinh() function is a built-in function in C++ defined in the complex header file. This function is the complex version of the sinh() function available in the cmath header file. This function is used to calculate the complex hyperbolic sine of a complex number z.
Syntax:
template<class T> complex<T> sinh (const complex<T>& z );
Parameter:
- z: This method takes a mandaory parameter z which represents the complex number.
Return value: This function returns the hyperbolic sine of complex number z.
Below programs illustrate the sinh() function of Complex header file in C++:
Example 1:
// C++ program to demonstrate // example of sinh() function. #include <bits/stdc++.h> using namespace std; int main () { complex< double > complexnumber (0.0, 1.0); // use of sinh() function for complex number cout << "The sinh of " << complexnumber << " is " << sinh (complexnumber) <<endl; return 0; } |
The sinh of (0,1) is (0,0.841471)
Example 2:
// CPP program to demonstrate // example of sinh() function. #include <bits/stdc++.h> using namespace std; int main() { complex< double > complexnumber (1.0, 0.0); // use of sinh() function for complex number cout << "The sinh of " << complexnumber << " is " << sinh (complexnumber) << endl; return 0; } |
The sinh of (1,0) is (1.1752,0)
Attention reader! Don’t stop learning now. Get hold of all the important C++ Foundation and STL concepts with the C++ Foundation and STL courses at a student-friendly price and become industry ready.