sinh()函数是在复杂头文件中定义的C++中的内置函数。此函数是cmath头文件中提供的sinh()函数的复杂版本。此函数用于计算复数z的复双曲正弦值。
句法:
template complex
sinh (const complex& z );
范围:
- z:该方法采用代表复数的mandaory参数z 。
返回值:该函数返回复数z的双曲正弦值。
下面的程序说明了C++中的复杂头文件的sinh()函数:
范例1:
// C++ program to demonstrate
// example of sinh() function.
#include
using namespace std;
int main ()
{
complex complexnumber (0.0, 1.0);
// use of sinh() function for complex number
cout << "The sinh of " << complexnumber << " is "
<< sinh(complexnumber) <
输出:
The sinh of (0,1) is (0,0.841471)
范例2:
// CPP program to demonstrate
// example of sinh() function.
#include
using namespace std;
int main()
{
complex 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)
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。