将python列表转换为Vector

时间:2018-05-24 12:05:15

标签: python list matrix vector

我想将python列表转换为Vector(具有单列的矩阵)。示例:[1, 2, 3]应变为[[1], [2], [3]]

1 个答案:

答案 0 :(得分:3)

使用list comprehension

>>> [[i] for i in [1,2,3]]
[[1], [2], [3]]

或者您也可以使用maplambda

>>> map(lambda x: [x], [1, 2, 3])
[[1], [2], [3]]