
数学
乐亿欧
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
从基础学AI---数学(1)
公司在向AI转型,要适应社会的发展就要不断的学习新知识。需要学习的知识:1,线性数学2,Python3,机械学习4,深度学习5,TensorFlow首先从数学开始学起。以前学数学不知道有什么用途,现在其实还是不知道。通过AI学习之后,希望自己回过头来能回答这个问题。内容是上学时大部分都学过的内容。温故而知新。go原创 2017-08-31 12:55:25 · 349 阅读 · 0 评论 -
python math.log对数
对数函数import mathimport matplotlib.pyplot as pltimport numpy as npif __name__ == '__main__': x = np.arange(0.05,3,0.05) y1 = [math.log(a,1.5) for a in x] plt.plot(x,y1,linewidth=2,col...原创 2018-11-12 11:23:20 · 12343 阅读 · 0 评论