我们被赋予寻找sin()
复数功能的工作的任务。复杂头文件中存在用于复数的sin()函数,这意味着要计算的值,sin()
我们需要在代码中添加复杂头文件。此函数用于计算复数的复双曲正弦值。
template<class t> complex<t> Sinh(const complex<t>& x);
参数z可以是任何复数,并且在sin()
使该参数为强制性的函数定义中定义了该参数。
该函数返回sin()的复数值,因为它包含复数。
输入-Sinh(0,1)
输出-(0,0.84147)
输入-Sinh(1,9)
输出-(-1.0707,0.6359)
#include<iostream.h> #include<complex.h> Using namespace std; int main( ){ Complex<double> x(2,7); Cout<< “ The sinh of “ << x << “ = “ << sinh(x) << endl; return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出
The sin of (2,7) = (2.734,2.4717)
#include<iostream.h> #include<complex.h> Using namespace std; int main( ){ Complex<double> x(5, 3); Cout<< “ The sinh of “ << x << “ = “ << sinh(x) << endl; return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出
The sin of (5, 3) = (-73.4606,10.4725)