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


C++ conj()用法及代碼示例


conj()函數在複雜頭文件中定義。此函數用於查找複數z的共軛。如果我們將複數z表示為(real,img),則其共軛為(real,-img)。

用法:

template<class T> complex<T> 
     conj (const complex<T>& Z);

參數:


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

返回值:此函數返回複數z的共軛。

以下示例程序旨在說明C++中用於複數的conj()函數:

示例1:

// C++ program to demonstrate 
// example of conj() function. 
   
#include <bits/stdc++.h> 
using namespace std; 
   
// driver program 
int main () 
{ 
  complex<double> complexnumber (3.0, 2.4); 
   
  cout << "The conjugate of " << complexnumber << " is:"; 
   
  // use of conj() function 
  cout << conj(complexnumber) << endl; 
  return 0; 
}
輸出:
The conjugate of (3,2.4) is:(3,-2.4)

示例2:

// C++ program to demonstrate 
// example of conj() function. 
   
#include <bits/stdc++.h> 
using namespace std; 
   
// driver program 
int main () 
{ 
  complex<double> complexnumber (2.0, 9.0); 
   
  cout << "The conjugate of " << complexnumber << " is:"; 
   
  // use of conj() function 
  cout << conj(complexnumber) << endl; 
  return 0; 
}
輸出:
The conjugate of (2,9) is:(2,-9)


相關用法


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