log() exp()函数

空扰寡人 提交于 2019-12-01 12:09:27

1 对数函数表示法

import numpy as np
import math
print('输出自然底数e:',math.e)

# np表示法
# np.log()是以e为底的自然对数
print(np.log(math.e))
# np.log10是以10为底的对数函数  这种写法只可表示底为2和10的对数函数
print(np.log10(10))
# np.log1p()表示ln(1+x)
print(np.log1p(math.e-1))

# math表示法
# 任意的对数函数表示方法,第一个数是幂,第二个是底数
print(math.log(64, 2))
View Code

 参考:https://www.runoob.com/python/func-number-log.html

2 指数函数表示法

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!