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)
相关用法
- C++ ios bad()用法及代码示例
- C++ ios eof()用法及代码示例
- C++ norm()用法及代码示例
- C++ quick_exit()用法及代码示例
- C++ fill_n()用法及代码示例
- C++ ios fail()用法及代码示例
- C++ ios clear()用法及代码示例
- C++ ios operator()用法及代码示例
- C++ ios good()用法及代码示例
- C++ wcslen()用法及代码示例
- C++ ios setstate()用法及代码示例
- C++ ios rdstate()用法及代码示例
- C++ wcsspn()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 conj() function in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。