log() exp()函数
摘要:
1 对数函数表示法 import numpy as np import math print('输出自然底数e:',math.e) # np表示法 # np.log()是以e为底的自然对数 print(np.log(math.e)) # np.log10是以10为底的对数函数 这种写法只可表示底为2 阅读全文
posted @ 2019-10-16 12:51 吃我一枪 阅读(2013) 评论(0) 推荐(0) 编辑