在Python中从矩阵中选择列向量

问题描述 投票:0回答:1

我想在 Python/numpy 中的矩阵中索引列向量,并将其作为列向量而不是一维数组返回。

x = np.array([[1,2],[3,4]])
x[:,1]
>array([2, 4])

np.transpose(x[:,1])
不是解决方案。根据
numpy.transpose
文档,这将返回一个行向量(一维数组)。

python numpy matrix indexing
1个回答
7
投票

很少有选择-

x[:,[1]]
x[:,None,1]
x[:,1,None]
x[:,1][:,None]
x[:,1].reshape(-1,1)
x[None,:,1].T
© www.soinside.com 2019 - 2024. All rights reserved.