首页 > 其他分享> > np.ones(len(X), 1) 与np.hstack((X, index))与X.shape(0)与X.shape(1) np.ones(len(X), 1) 与np.hstack((X, index))与X.shape(0)与X.shape(1) 2021-01-17 18:57:24 作者:互联网 np.ones(len(X), 1) 创建一个行数为len(X)列数为1的矩阵 np.hstack((X, index)) 将矩阵X与index横向拼接 X.shape(0) 计算矩阵X列的数目 X.shape(1) 计算矩阵X行的数目 标签:index,hstack,矩阵,len,shape,np 来源: https://blog.csdn.net/banxiaCSDN/article/details/112755721