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