在复数头文件中定义了用于复数的log()函数。该函数是log()函数的复杂版本。此函数用于计算复数z的复数自然对数,即以e为底,并返回复数z的自然对数。
用法:
template<class T> complex<T> log (const complex<T>& z );
参数:该方法采用代表复数的强制性参数z。
返回值:此函数返回复数z的自然对数。
以下示例程序旨在说明C++中的log()函数:
示例1:
// c++ program to demonstrate
// example of log() function.
#include <bits/stdc++.h>
using namespace std;
// driver program
int main()
{
// initializing the complex:(-1.0+0.0i)
complex<double> complexnumber(-1.0, 0.0);
// use of log() function for complex number
cout << "The log of "
<< complexnumber
<< " is "
<< log(complexnumber)
<< endl;
return 0;
}
输出:
The log of (-1,0) is (0,3.14159)
示例2:
// c++ program to demonstrate
// example of log() function.
#include <bits/stdc++.h>
using namespace std;
// driver program
int main()
{
// initializing the complex:(-1.0 + -0.0i)
complex<double> complexnumber(-1.0, -0.0);
// use of log() function for complex number
cout << "The log of "
<< complexnumber
<< " is "
<< log(complexnumber)
<< endl;
return 0;
}
输出:
The log of (-1,-0) is (0,-3.14159)
相关用法
- C++ complex exp()用法及代码示例
- C++ complex cos()用法及代码示例
- C++ complex pow()用法及代码示例
- C++ complex tan()用法及代码示例
- C++ complex arg()用法及代码示例
- C++ complex acosh()用法及代码示例
- C++ complex cosh()用法及代码示例
- C++ complex acos()用法及代码示例
- C++ complex sqrt()用法及代码示例
- C++ complex tanh()用法及代码示例
- C++ complex atanh()用法及代码示例
- C++ complex asin()用法及代码示例
- C++ complex sinh()用法及代码示例
- C++ complex atan()用法及代码示例
- C++ complex polar()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 log() function for complex number in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。