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


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


在複數頭文件中定義了用於複數的tan()函數,此函數是tan()函數的複數版本。此函數用於計算複數z的複數tan。此函數返回複數z的tan。

用法:

tan(z);

參數:


  • z:該方法采用代表複數的mandaory參數z。

返回值:此函數返回複數z的tan()。

以下示例程序旨在說明C++中的tan()函數:

計劃1:-

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

計劃2:-

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


相關用法


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