📜  exp()函数,用于C++中的复数

📅  最后修改于: 2021-05-30 02:56:13             🧑  作者: Mango

复数的exp()函数在复数头文件中定义。此函数是exp()函数的复杂版本。此函数用于计算复数z的基本e指数,并返回复数z的基本e指数。

句法:

template complex 
       exp (const complex& z );

参数:此方法采用必填参数z ,它代表复数。

返回值:该函数返回复数z的base-e指数

下面的程序说明了C++中的exp()函数:

范例1:-

// c++ program to demonstrate
// example of exp() function.
  
#include 
using namespace std;
  
// driver program
int main()
{
    // initializing the complex: (-1.0+0.0i)
    complex complexnumber(-1.0, 0.0);
  
    // use of exp() function for complex number
    cout << "The exp of "
         << complexnumber
         << " is "
         << exp(complexnumber)
         << endl;
  
    return 0;
}
输出:
The exp of (-1,0) is (0.367879,0)

示例2:

// c++ program to demonstrate
// example of exp() function.
  
#include 
using namespace std;
  
// driver program
int main()
{
    // initializing the complex: (0.0 + 1.0i)
    complex complexnumber(0.0, 1.0);
  
    // use of exp() function for complex number
    cout << "The exp of "
         << complexnumber
         << " is "
         << exp(complexnumber)
         << endl;
  
    return 0;
}
输出:
The exp of (0,1) is (0.540302,0.841471)
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”