當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ complex Sinh()用法及代碼示例


我們的任務是找出複數的 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)

相關用法


注:本文由純淨天空篩選整理自Sunidhi Bansal大神的英文原創作品 Sinh() function for complex number in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。