在复数头文件中定义了用于复数的arg()函数。此函数用于返回复数z的参数。
用法:
template<class T> T arg (const complex<T>& z);
参数:
- z:它代表给定的复数。
返回:它返回复数的参数。
以下示例程序旨在说明上述函数:-
范例1:
// C++ program to demonstrate
// example of arg() function.
#include <bits/stdc++.h>
using namespace std;
int main ()
{
// defines the complex number:(5.0 + 12.0i)
complex<double> complexnumber (5.0, 12.0);
// prints the argument of the complex number
cout << "The argument of " << complexnumber << " is:";
cout << arg(complexnumber) << endl;
return 0;
}
输出:
The argument of (5,12) is:1.17601
范例2:
// C++ program to demonstrate
// example of arg() function
#include <bits/stdc++.h>
using namespace std;
int main ()
{
// defines the complex number:(4.0+3.0i)
complex<double> complexnumber (4.0, 3.0);
// prints the argument of the complex number
cout << "The argument of " << complexnumber << " is:";
cout << arg(complexnumber) << endl;
return 0;
}
输出:
The argument of (4,3) is:0.643501
相关用法
- C++ complex exp()用法及代码示例
- C++ complex cos()用法及代码示例
- C++ complex pow()用法及代码示例
- C++ complex log()用法及代码示例
- C++ complex tan()用法及代码示例
- C++ complex acosh()用法及代码示例
- C++ complex cosh()用法及代码示例
- C++ complex acos()用法及代码示例
- C++ complex sqrt()用法及代码示例
- C++ complex tanh()用法及代码示例
- C++ complex atanh()用法及代码示例
- C++ complex asin()用法及代码示例
- C++ complex sinh()用法及代码示例
- C++ complex atan()用法及代码示例
- C++ complex polar()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 arg() function for Complex Number in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。