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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。