05 2018 档案

摘要:Git下载、安装 下载地址 选择相应版本,一路默认就OK. 初始化仓库(repository) 所谓的仓库(repository)就是我们的代码(文件)存放在哪里。比如本篇文章使用的test文件夹: 从截图可以看到该文件夹目前是空的。 初始化命令:git init 在test文件夹空白处,右键/Gi 阅读全文
posted @ 2018-05-23 18:44 早起Abc 阅读(145) 评论(0) 推荐(0)
摘要:前言 对于学习NumPy(Numeric Python),首先需要知道一点是:Numpy 是用来处理矩阵数组的。因此,知道一个数组是多少维度是很有必要的。 shape 属性 对于shape函数,官方文档是这么说明: the dimensions of the array. This is a tup 阅读全文
posted @ 2018-05-05 00:43 早起Abc 阅读(34805) 评论(2) 推荐(2)