C++ 中复数的 acos() 函数?
这里我们将了解复数的 acos() 方法。使用 complex 头文件即可使用复数。该头文件中也存在 acos() 函数。这是正规 acos() 函数的复数版本。这用于查找复数的复弧余弦。
该函数接受复数作为输入参数,并返回弧余弦作为输出。我们看一个例子来了解该函数。
示例
#include<iostream> #include<complex> using namespace std; main() { complex<double> c1(5, 2); //acos() function for complex number cout << "The acos() of " << c1<< " is "<< acos(c1); }
输出
The acos() of (5,2) is (0.386565,-2.37055)
广告