python的在数据处理中的强大作用,必定会涉及到对矩阵的行列访问问题,在这里对几个访问方式进行说明。在这里采用矩阵来表示访问行与列及行内元素。
1、生成矩阵,
import regTrees as treeR
from numpy import *
>>testMat=mat([[1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]]) #生成四维矩阵
>>testMat
matrix([[ 1, 2, 3, 4], [ 5, 6, 7, 8], [ 9, 10, 11, 12], [13, 14, 15, 16]])
2、访问第n列 :采用系列或者列表的分片模式[:,column ],例如访问第一列,testMat[:,0],访问第一列的第三元素
testMat[:,0][2]
>>testMat[:,0]
matrix([[ 1], [ 5], [ 9], [13]])>>testMat[:,0][2]
matrix([[9]])
3、访问第N行及第N行的第m列 例如要访问第二行testMat[1],访问第二行第三列testmat[1][:,2]
>>testMat[1]
matrix([[1, 2, 3, 4]])>>testMat[1][:,2]matrix([[7]])