在本文中,我们将讨论C ++ STL中用于复数的std::exp()函数的工作,语法和示例。
用于复数的std::exp()函数是C ++ STL中的内置函数,该函数在<complex>头文件中定义。exp()
复数的函数与普通函数相同,exp()
后者也是一个内置函数,定义在<cmath>头文件中,用于查找输入的指数值。此函数是复数的指数并返回复数的指数数。
exp(complex <T> num);
该函数接受以下参数-
num-这是一个复数,我们希望找到它的指数。
此函数返回num的指数值。
exp(complex<double> complexnumber(-1.0, 0.0));
输出结果
The result is : (-1, 0) is (0.367879, 0)
#include <bits/stdc++.h> using namespace std; int main(){ complex<double> complexnumber(-1.0, 0.0); cout<<"The result is : " << complexnumber<< " is "<< exp(complexnumber)<< endl; return 0; }
输出结果
The result is : (-1, 0) is (0.367879, 0)
#include <bits/stdc++.h> using namespace std; int main(){ complex<double> complexnumber(0.0, 1.0); cout<<"The result is : " << complexnumber<< " is "<< exp(complexnumber)<< endl; return 0; }
输出结果
The result is : (0, 1) is (0.540302,0.841471)