阅读量:0
C++ 的复数类(std::complex
)位于 <complex>
头文件中,提供了一系列用于处理复数的数学函数。以下是一些常见的复数操作:
- 加法:
operator+
- 减法:
operator-
- 乘法:
operator*
- 除法:
operator/
- 取共轭:
std::conj
- 取模(绝对值):
std::abs
- 取相角:
std::arg
- 取实部:
std::real
- 取虚部:
std::imag
- 取平方根:
std::sqrt
- 取幂:
std::pow
- 取整数部分:
std::floor
- 取小数部分:
std::ceil
- 取最大值:
std::max
- 取最小值:
std::min
这里有一个简单的例子展示如何使用 C++ 的复数类:
#include <iostream> #include <complex> int main() { std::complex<double> c1(3, 4); // 创建一个复数 3 + 4i std::complex<double> c2(1, 2); // 创建一个复数 1 + 2i std::cout << "c1 + c2 = " << c1 + c2 << std::endl; std::cout << "c1 - c2 = " << c1 - c2 << std::endl; std::cout << "c1 * c2 = " << c1 * c2 << std::endl; std::cout << "c1 / c2 = " << c1 / c2 << std::endl; std::cout << "Conjugate of c1 = " << std::conj(c1) << std::endl; std::cout << "Absolute value of c1 = " << std::abs(c1) << std::endl; std::cout << "Argument of c1 = " << std::arg(c1) << std::endl; return 0; }
注意,在使用复数类时,请确保已经包含了 <complex>
头文件。