python的对数
首先要导入 math 模块:
import math
import numpy as np
math.log(8,2),此为以2为底8的对数
等于 math.log2(8);
等于np.log2(8)
自然对数: 以e为底的对数。
e = math.e 约等于 2.718281828459045;
x的自然对数为:
math.log(x,math.e);
等于np.log(x)。
python的对数
首先要导入 math 模块:
import math
import numpy as np
math.log(8,2),此为以2为底8的对数
等于 math.log2(8);
等于np.log2(8)
自然对数: 以e为底的对数。
e = math.e 约等于 2.718281828459045;
x的自然对数为:
math.log(x,math.e);
等于np.log(x)。
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M