Python中「矩陣」的創建及用法

import numpy matrix = numpy.array([[1,2,3],[4,5,6],[7,8,9]])#創建矩陣 print(matrix) print(matrix.shape)#矩陣維度 vector = numpy.array([[1,2,3],[4,5,6],[7,8,9]]) print(vector) print(vector[0:3,0])#打印第一至三行,第一列
相關文章
相關標籤/搜索