sqrt()函数的复杂版本在复杂头文件中定义。此函数用于计算带有沿负实轴的分支的复数z的平方根。
用法:
template <class T> complex<T> sqrt(const complex<T>& z);
参数:该方法采用mandaory参数z,该参数代表要计算其平方根的复数。
返回值:此函数返回复数z的平方根。
以下示例程序旨在说明C++中用于复数的sqrt()函数:
例:-
// C++ program to demonstrate
// example of sqrt() function.
#include <bits/stdC++.h>
using namespace std;
int main()
{
cout << "Square root of -9 is =";
cout << sqrt(complex<double>(-9, 0))
<< endl;
cout << "Square root of (-9, -0), is = ";
cout << sqrt(complex<double>(-9, -0.0))
<< endl;
return 0;
}
输出:
Square root of -9 is =(0,3) Square root of (-9, -0) is = (0,-3)
相关用法
- C++ complex cos()用法及代码示例
- C++ complex log()用法及代码示例
- C++ complex arg()用法及代码示例
- C++ complex exp()用法及代码示例
- C++ complex tan()用法及代码示例
- C++ complex abs()用法及代码示例
- C++ complex pow()用法及代码示例
- C++ complex acos()用法及代码示例
- C++ complex asin()用法及代码示例
- C++ complex atanh()用法及代码示例
- C++ complex tanh()用法及代码示例
- C++ complex sinh()用法及代码示例
- C++ complex cosh()用法及代码示例
- C++ complex asinh()用法及代码示例
- C++ complex log10()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 sqrt() function for complex number in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。