当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ complex tanh()用法及代码示例


在复数头文件中定义了用于复数的tanh()函数。此函数是cmath头文件tanh()函数的复杂版本。此函数用于计算复数z的复双曲正切。

用法:

template<class T> complex<T> 
         tanh (const complex<T>& z );

参数:


  • z:该方法采用代表复数的mandaory参数z。

返回值:此函数返回复数z的双曲正切。

以下示例程序旨在说明C++中的tanh()函数:

范例1:

// C++ program to demonstrate 
// example of tanh() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main () 
{ 
  complex<double> complexnumber (0.0, 1.0); 
  
  // use of tanh() function for complex number 
  cout << "The tanh of " << complexnumber << " is "
                     << tanh(complexnumber) <<endl; 
  
  return 0; 
}
输出:
The tanh of (0,1) is (0,1.55741)

范例2:

// C++ program to demonstrate 
// example of tanh() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main () 
{ 
  complex<double> complexnumber (1.0, 0.0); 
  
  // use of tanh() function for complex number 
  cout << "The tanh of " << complexnumber << " is "
                     << tanh(complexnumber) << endl; 
  
  return 0; 
}
输出:
The tanh of (1,0) is (0.761594,0)


相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 tanh() function for Complex Number in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。