我們的任務是找出複數的 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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。