复数头文件中定义了用于复数的cosh()函数,此函数是cosh()函数的复杂版本。此函数用于计算复数z的复双曲余弦并返回复数z的cosh。
句法:
cosh(z);
范围:
- z:该方法采用代表复数的mandaory参数z 。
返回值:该函数返回复数z的cosh()。
下面的程序说明了C++中的cosh()函数:
计划1:-
输出:
The cosh of (0, 1) is (0.540302, 0)
示例2:
// c++ program to demonstrate
// example of cosh() function.
#include
using namespace std;
// driver program
int main ()
{
complex complexnumber (1.0, 0.0);
// use of cosh() function for complex number
cout << "The cosh of " << complexnumber << " is "
<< cosh(complexnumber) << endl;
return 0;
}
输出:
The cosh of (1, 0) is (1.54308, 0)
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。