函式模板
<complex>

std::sin

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

這是 sin 函式的 complex 版本(定義在 <cmath>)。

引數

x
複數值,表示以弧度為單位的角度。

返回值

x 的正弦。

另見