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