今天做课程设计用到 做个笔记 根据一个博主的改的
原博:美酒爱尔兰的博客
import numpy as np
import xlrd
def excel2m(path):#读excel数据转为矩阵函数
data = xlrd.open_workbook(path)
table = data.sheets()[0] # 获取excel中第一个sheet表
nrows = table.nrows # 行数
ncols = table.ncols # 列数
datamatrix = np.zeros((nrows, ncols))
for x in range(ncols):
cols = table.col_values(x)
cols1 = np.matrix(cols) # 把list转换为矩阵进行矩阵操作
datamatrix[:, x] = cols1 # 把数据进行存储
return datamatrix
m1 = excel2m("t1.xlsx");m2 = excel2m("t2.xlsx")#读数据