📜  C++ 中复数的 log()函数

📅  最后修改于: 2022-05-13 01:57:14.287000             🧑  作者: Mango

C++ 中复数的 log()函数

复数的log()函数在复数头文件中定义。这个函数是log()函数的复杂版本。该函数用于计算以e为底的复数 z 的复数自然对数,并返回复数 z 的自然对数。

句法:

template complex 
       log (const complex& z );

参数:此方法采用一个强制参数z表示复数。

返回值:该函数返回复数 z 的自然对数。

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



示例 1:-

// c++ program to demonstrate
// example of log() function.
  
#include 
using namespace std;
  
// driver program
int main()
{
    // initializing the complex: (-1.0+0.0i)
    complex 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 
using namespace std;
  
// driver program
int main()
{
    // initializing the complex: (-1.0 + -0.0i)
    complex 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)