exp()函数用于C ++中的复数
在本文中,我们将讨论C ++ STL中用于复数的std::exp()函数的工作,语法和示例。
什么是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)
以上是 exp()函数用于C ++中的复数 的全部内容, 来源链接: utcz.com/z/331109.html