函数模板
<complex>

std::sin

template<class T> complex<T> sin (const complex<T>& x);
复数的正弦
返回复数 x 的正弦。

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

参数

x
复数值,表示以弧度为单位的角度。

返回值

x 的正弦。

另见