上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 72 下一页
摘要: 安装 修改配置文件 阅读全文
posted @ 2017-07-03 21:12 2021年的顺遂平安君 阅读(338) 评论(0) 推荐(0)
摘要: 全程在root下进行 安装x11vnc sudo apt-get install vino vinagre x11vnc 设置密码 sudo x11vnc -storepasswd sudo x11vnc -storepasswd in /e... 阅读全文
posted @ 2017-07-03 17:48 2021年的顺遂平安君 阅读(88) 评论(0) 推荐(0)
摘要: 全程在root下进行 安装x11vnc 设置密码 配置开机自启动 输入以下内容: 其中端口号 5900 可以改成别的。 重启计算机 远程访问 安装 VNC Viewer ,输入IP地址::5900,再输入密码,可以了。 阅读全文
posted @ 2017-07-03 17:48 2021年的顺遂平安君 阅读(446) 评论(0) 推荐(0)
摘要: a = [1,2,3,4,5,6,7,8,9,10] a[0:1] = [1] a[0:2] = [1,2] 包含开头,不包含结尾。 a [:-1]: 从头一直到最后一个元素a[-1],但不包含最后一个元素。 Python这样做的原因是: wor... 阅读全文
posted @ 2017-07-02 22:37 2021年的顺遂平安君 阅读(61) 评论(0) 推荐(0)
摘要: `a = [1,2,3,4,5,6,7,8,9,10]` = = 包含开头, 不包含 结尾。 : 从头一直到最后一个元素 , 但不包含最后一个元素 。 Python这样做的原因是: `word[2:] 除了前两个,其他全部选取` 阅读全文
posted @ 2017-07-02 22:37 2021年的顺遂平安君 阅读(6015) 评论(0) 推荐(0)
摘要: `subplot(arg1, arg2, arg3)` : 在垂直方向同时画几张图 : 在水平方向同时画几张图 : 当前命令修改的是第几张图 阅读全文
posted @ 2017-07-02 20:10 2021年的顺遂平安君 阅读(11933) 评论(0) 推荐(0)
摘要: subplot(arg1, arg2, arg3) arg1: 在垂直方向同时画几张图 arg2: 在水平方向同时画几张图 arg3: 当前命令修改的是第几张图 t = np.arange(0,5,0.1)y1 = np.sin(2*np.pi*t)y... 阅读全文
posted @ 2017-07-02 20:10 2021年的顺遂平安君 阅读(144) 评论(0) 推荐(0)
摘要: Pylab combines the functionality of pyplot with the capabilities of NumPy in a single namespace, and therefore you do not nee... 阅读全文
posted @ 2017-07-02 17:45 2021年的顺遂平安君 阅读(71) 评论(0) 推荐(0)
摘要: Pylab combines the functionality of pyplot with the capabilities of NumPy in a single namespace, and therefore you do not need to import NumPy separat 阅读全文
posted @ 2017-07-02 17:45 2021年的顺遂平安君 阅读(1420) 评论(0) 推荐(0)
摘要: Figure is the object with the highest level in the hierarchy. It corresponds to the entire graphical representation and generally can contain many Axe 阅读全文
posted @ 2017-07-02 17:40 2021年的顺遂平安君 阅读(852) 评论(0) 推荐(1)
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 72 下一页