函数模板
<complex>

std::sqrt

template<class T> complex<T> sqrt (const complex<T>& x);
复数平方根
返回 x 的平方根,使用主分支,其截线沿负实轴。

这是 sqrt 函数(在 <cmath> 中定义)的 complex 版本。

参数

x
复数值。

返回值

x 的平方根。

另见