当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ complex pow()用法及代码示例


在复数头文件中定义了用于复数的pow()函数。该函数是pow()函数的复杂版本。此函数用于计算基数x的复数幂到y-th幂。

用法:

template<class T> complex<T> pow (const complex<T>& x, int y);



or,
template<class T> complex<T> pow (const complex<T>& x, const complex<T>& y);

or,
template<class T> complex<T> pow (const complex<T>& x, const T& y);

or,
template<class T> complex<T> pow (const T& x, const complex<T>& y);

参数:此方法接受两个参数:

  • x:它代表复杂值的基础。
  • y:它表示 index 为复数值。

返回值:此函数将基数x的复数幂返回到y-th幂。

以下示例程序旨在说明C++中的pow()函数:

示例1:

// c++ program to demonstrate 
// example of pow() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
// driver program 
int main() 
{ 
    // initializing the complex:(1.0+2.0i) 
    complex<double> complexnumber(1.0, 2.0); 
  
    // use of pow() function for complex number 
    cout << "(1.0, 2.0)^2 = "
         << pow(complexnumber, 2) 
         << endl; 
  
    return 0; 
}
输出:
(1.0, 2.0)^2 = (-3,4)

示例2:

// c++ program to demonstrate 
// example of pow() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
// driver program 
int main() 
{ 
    // initializing the complex:(2.0+1.0i) 
    complex<double> complexnumber(2.0, 1.0); 
  
    // use of pow() function for complex number 
    cout << "(2.0, 1.0)^3 = "
         << pow(complexnumber, 3) 
         << endl; 
  
    return 0; 
}
输出:
(2.0, 1.0)^3 = (2,11)


相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 pow() function for complex number in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。