C++ 中复杂数字的 pow() 函数
pow() 或幂函数是一个函数,用于计算一个数的幂。它通常用于实数。在此,我们将看到其在复数中的实现。
复数是指可以表示为A + iB 的数,其中 A 是实部,B 是该数的虚部。
c++ 中复数的函数在头文件 <complex.h> 中定义。在此,定义了复数的 pow() 方法。它找到复数的复数幂到某次幂。
应用于复数的方法采用两个输入参数,第一个是复数基数 (C),然后是指数 (a)。它返回一个复数 C^a。
输入 − C = 4 + 3i a = 2
输出 − (7, 24)
示例
用于查找复数的 pow 的程序
#include <iostream> #include <complex> using namespace std; int main() { complex<double> complexnumber(4, 3); cout<<"Square of (4+ 3i) = "<<pow(complexnumber, 2)<<endl; return 0; }
输出
Square of (4+ 3i) = (7,24)
广告