nunmpy中的log和ln函数
程序员文章站
2024-02-27 16:58:57
...
每次当我想用python
实现ln函数时,下意识的就会输入错误的函数代码,这里特来记录一下关于numpy
中的ln
和log
函数正确的调用方式。ln
函数:
import numpy as np
class NumpyStudy:
def lnFunction(self):
const = np.e
result = np.log(const)
print("函数ln(e)的值为:")
print(result)
if __name__ == "__main__":
main = NumpyStudy()
main.lnFunction()
"""
函数ln(e)的值为:
1.0
"""
我们可以看到得到的值为1
,说明在python
中,np.log()
指代的便是数学中使用的ln
函数。
log
函数
import numpy as np
class NumpyStudy:
def logFunction(self):
const = 100
result = np.log10(const)
print("函数ln(e)的值为:")
print(result)
if __name__ == "__main__":
main = NumpyStudy()
main.logFunction()
"""
函数ln(e)的值为:
2.0
"""
我们可以看到得到的值为2
,说明在python
中,np.log10()
指代的便是数学中使用的log
函数。
码字不易,如果大家觉得有用,请高抬贵手给一个赞让我上推荐让更多的人看到吧~
上一篇: thinkphp3.2 EXP BUG
下一篇: ceil和floor用法
推荐阅读
-
nunmpy中的log和ln函数
-
c++中的atoi()和stoi()函数的用法和区别
-
MySQL存储过程中的基本函数和触发器的相关学习教程
-
Yii2中设置与获取别名的函数(setAlias和getAlias)用法分析
-
【转】Shell中脚本变量和函数变量的作用域 博客分类: linux命令unix shell作用域shelllocal函数变量
-
【转】Shell中脚本变量和函数变量的作用域 博客分类: linux命令unix shell作用域shelllocal函数变量
-
MySQL存储过程中的基本函数和触发器的相关学习教程
-
【VBA记录】记录使用VBA中,一些常用到的语法和函数
-
详解PHP中strlen和mb_strlen函数的区别_php实例
-
php中在变量和函数前加static关键字之后的区别