随笔分类 - numpy
摘要: 
阅读全文
摘要:http://www.astroml.org/book_figures/appendix/fig_broadcast_visual.html 规则 例子
阅读全文
摘要: 
阅读全文
摘要:
阅读全文
摘要: 
阅读全文
摘要:
阅读全文
摘要:安装并激活 jupyter_contrib_nbextensions, 为了快速安装的速度,先临时使用清华的镜像,这样并不会改变默认的pip参数。 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple flask pip install ju
阅读全文
摘要:安装jupyter pip3 intall jupyter 启动 jupyter notebook 创建数组
阅读全文
摘要:# 关于rollaxis与swapaxes的使用 import numpy as np a = np.arange(8).reshape(2, 2, 2) print(a) print(a.ndim) # 维度 # numpy.rollaxis 函数向后滚动特定的轴到一个特定位置 # numpy.r
阅读全文