提问人:Away 提问时间:11/14/2023 更新时间:11/14/2023 访问量:26
在 python 中为矩阵的每一列赋值
Assign values to each column of the matrix in python
问:
Q = np.zeros((5,5))
ccs = [1,2,3,4,5]
q = [[-0.48198762]
[-0.155757 ]
[ 0.79430319]
[-0.25273778]
[-0.22053059]]
for cc in ccs:
Q[:,(int(cc)-1)] = np.transpose(q)
我在 ipython 中运行代码,它有效,但结果 Q 甚至没有改变,当我在 s 脚本中运行时仍然是零矩阵!
答: 暂无答案
评论
q