C++ 中的复数的 atan() 函数?


在这里,我们将会看到复数的 atan() 方法。复数可以使用 complex 头文件。在该头文件中,atan() 函数也已经存在。这是普通 atan() 函数的复杂版本。它用于找到复数的复杂反正切。

此函数将复数作为输入参数,并将反正切作为输出返回。让我们看一个示例来了解这个想法。

示例

 现场演示

#include<iostream>
#include<complex>
using namespace std;
int main() {
   complex<double> c1(5, 2);
   //atan() function for complex number
   cout << "The atan() of " << c1<< " is "<< atan(c1);
}

输出

The atan() of (5,2) is (1.39928,0.067066)

更新于: 30-Jul-2019

121 次浏览

启动你的 职业

通过完成课程获得认证

开始
广告