如何使用python 对一个一维向量取对数
答案:2 悬赏:0 手机版
解决时间 2021-02-12 02:34
- 提问者网友:趣果有间
- 2021-02-11 13:22
如何使用python 对一个一维向量取对数
最佳答案
- 五星知识达人网友:不甚了了
- 2021-02-11 14:44
此方法返回x的自然对数,对于x>0。
例子
下面的例子显示了log()方法的用法。
?
1
2
3
4
5
6
7
#!/usr/bin/python
import math # This will import math module
print "math.log(100.12) : ", math.log(100.12)
print "math.log(100.72) : ", math.log(100.72)
print "math.log(119L) : ", math.log(119L)
print "math.log(math.pi) : ", math.log(math.pi)
当我们运行上面的程序,它会产生以下结果:
?
1
2
3
4
math.log(100.12) : 4.60636946656
math.log(100.72) : 4.61234438974
例子
下面的例子显示了log()方法的用法。
?
1
2
3
4
5
6
7
#!/usr/bin/python
import math # This will import math module
print "math.log(100.12) : ", math.log(100.12)
print "math.log(100.72) : ", math.log(100.72)
print "math.log(119L) : ", math.log(119L)
print "math.log(math.pi) : ", math.log(math.pi)
当我们运行上面的程序,它会产生以下结果:
?
1
2
3
4
math.log(100.12) : 4.60636946656
math.log(100.72) : 4.61234438974
全部回答
- 1楼网友:野慌
- 2021-02-11 15:19
此方法返回x的自然对数,对于x>0。
例子
下面的例子显示了log()方法的用法。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯