C++ 中复数的 asin() 函数?
本文档将介绍复数的 asin() 方法。复数可以使用 complex 头文件。该头文件中还包含 asin() 函数。这是 normal asin() 函数的复杂版本。该函数用于找到复数的复杂反正弦值。
此函数以复数作为输入参数,并返回反正弦值作为输出。下面提供一个示例供参考。
示例
#include<iostream> #include<complex> using namespace std; int main() { complex<double> c1(5, 2); //asin() function for complex number cout << "The asin() of " << c1<< " is "<< asin(c1); }
输出
The asin() of (5,2) is (1.18423,2.37055)
广告