码迷,mamicode.com
首页 > 编程语言 > 详细

python num[y array

时间:2015-01-01 07:52:59      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:

 

http://sebug.net/paper/books/scipydoc/numpy_intro.html

 

npArr1=np.array([1,2,3],[4,5,6],[7,8,9]])

npArr1[0]  #0th row

npArr1[0][1] #oth row ,1stcolumn

npArr1[:,0] #0column

 

>>> npArr2[0:2,1] #1th column, 0,1 row
array([2, 4])

 

python num[y array

标签:

原文地址:http://www.cnblogs.com/zyip/p/4196984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!