gpt4 book ai didi

python - 创建多个向量

转载 作者:行者123 更新时间:2023-11-30 23:45:18 24 4
gpt4 key购买 nike

假设我有一个数字列表,我想以 (x, 0, 0) 的形式从所有这些数字中创建一个向量。我该怎么做?

hello = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

因此,当我访问 hello[2] 时,我会得到 (3, 0, 0) 而不仅仅是 3

最佳答案

试试这个,使用 numpy - “使用 Python 进行科学计算的基础包”:

import numpy as np
hello = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
hello = [np.array([n, 0, 0]) for n in hello]

以上将产生您期望的结果:

>>> hello[2]
array([3, 0, 0])

>>> hello[2] * 3
array([9, 0, 0])

关于python - 创建多个向量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9612160/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com