我们的任务是找出复数的 sin() 函数的工作原理。复数的 sin( ) 函数存在于复数头文件中,这意味着为了计算 sin() 的值,我们需要在代码中添加复数头文件。该函数用于计算复数的复双曲正弦。
用法
template<class t> complex<t> Sinh(const complex<t>& x);
参数
参数 z 可以是任何复数,该参数在 sin() 函数的定义中定义,这使得该参数成为必需。
返回类型
此函数返回 sin() 的复数值,因为它包含复数。
Input− Sinh(0,1)
Output- (0,0.84147)
Input− Sinh(1,9)
Output- (-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)
相关用法
- C++ complex Sin()用法及代码示例
- C++ Set cbegin()、cend()用法及代码示例
- C++ String back()用法及代码示例
- C++ String append()用法及代码示例
- C++ Stack push()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ Stack empty()用法及代码示例
- C++ Set upper_bound()用法及代码示例
- C++ SHRT_MIN用法及代码示例
- C++ Stack size()用法及代码示例
- C++ String size()用法及代码示例
- C++ String resize()用法及代码示例
- C++ String swap()用法及代码示例
- C++ String crend()用法及代码示例
- C++ String compare()用法及代码示例
- C++ String empty()用法及代码示例
- C++ String replace()用法及代码示例
- C++ Set set()用法及代码示例
- C++ String at()用法及代码示例
- C++ Set max_size()用法及代码示例
注:本文由纯净天空筛选整理自Sunidhi Bansal大神的英文原创作品 Sinh() function for complex number in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。