C++ Complex 库 - Polar
描述
它是一个来自极坐标分量的复数,并且 r 是一个复数对象(以笛卡尔格式),对应于由其极坐标分量 rho 和 theta 定义的复数,其中 rho 是幅度(模量),theta 是相位角。
声明
以下是 std::polar 的声明。
template<class T> complex<T> polar (const T& rho, const T& theta = 0);
C++11
template<class T> complex<T> polar (const T& rho, const T& theta = 0);
参数
rho 它是复数的量值(模数)。
theta 它是复数的相位角(角度分量)。
T 它是复杂类型的组件的一种类型。
返回值
它返回与 rho 和 theta 形成的极坐标格式等效的复杂笛卡尔坐标。
异常
none
示例
在下面的 std::polar 示例中。
#include <iostream> #include <complex> int main () { std::cout << "The complex whose magnitude is " << 1.0 << '\n'; std::cout << " and phase angle is " << 0.7 << '\n'; std::cout << " is " << std::polar (1.0, 0.7) << '\n'; return 0; }
示例输出应该是这样的 −
The complex whose magnitude is 1 and phase angle is 0.7 is (0.764842,0.644218)