当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Math log()用法及代码示例


该函数用于求给定数字的自然对数(base-e 对数)。

数学上:

假设 'x' 是一个给定的数字:

logex = log(x);

用法

float log(float x);
double log(double x);
long double log(long double x);
double log(integral x);

参数

x: 是要计算自然对数的值。

返回值

以下是给定数字的返回值:

参数(x) 返回值
x>1 Positive
x=1 0
1>x>0 Negative
x=0 -无穷大
x<0 不是数字(nan)

例子1

当 x 的值为 1 时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    int x=1;
    std::cout << "Value of x is:" <<x <<std::endl;
    cout<<"Log value of x is:"<<log(x);
    return 0;
}

输出:

Value of x is:1
Log value of x is:0

在本例中,x 的值为 1。因此,函数 log() 返回正值,即 0。

例子2

让我们看另一个简单的例子

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    int x=3;
    std::cout << "Value of x is:" <<x <<std::endl;
    cout<<"Log value of x is:"<<log(x);
    return 0;
}

输出:

Value of x is:3
Log value of x is:1.09861

在本例中,x 的值为 3。因此,函数 log() 返回正值,即 1.09861

例子3

当 x 的值为 -0.5 时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float x= -0.5;
    std::cout << "Value of x is:" <<x <<std::endl;
    cout<<"Log value of x is:"<<log(x);
    return 0;
}

输出:

Value of x is:-0.5
Log value of x is:nan

在本例中,x 的值为 -0.5。因此,函数 log() 返回 Not a Number(nan)。

示例 4

让我们看一个简单的例子,当 x 的值为 0 时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    int x= 0;
    std::cout << "Value of x is:" <<x <<std::endl;
    cout<<"Log value of x is:"<<log(x);
    return 0;
}

输出:

clValue of x is:0
Log value of x is:-inf

在本例中,x 的值为 -1。因此,函数 log() 返回 nan(Not a Number)。

例 5

当 x 的值为 0.8 时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float x=0.8;
    std::cout << "Value of x is:" <<x <<std::endl;
    cout<<"Log value of x is:"<<log(x);
    return 0;
}

输出:

Value of x is:0.8
Log value of x is:-0.223144

在本例中,x 的值为 0.8。因此,函数 log() 返回负值,即 -0.22






相关用法


注:本文由纯净天空筛选整理自 C++ Math log()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。