将元素添加到 numpy 数组
- 作者: 女暧男
- 来源: 51数据库
- 2022-10-21
问题描述
我有以下 numpy 数组
I have the following numpy array
import numpy as np X = np.array([[5.], [4.], [3.], [2.], [1.]])
我想在开头插入 [6.].我试过了:
I want to insert [6.] at the beginning. I've tried:
X = X.insert(X, 0)
如何插入到 X 中?
推荐答案
numpy 有一个 insert 函数,可以通过 np.insert 和 文档.
numpy has an insert function that's accesible via np.insert with documentation.
在这种情况下,您需要像这样使用它:
You'll want to use it in this case like so:
X = np.insert(X, 0, 6., axis=0)
第一个参数X指定要插入的对象.
the first argument X specifies the object to be inserted into.
第二个参数0指定位置.
第三个参数6.指定要插入的内容.
The third argument 6. specifies what is to be inserted.
第四个参数axis=0 指定插入应该发生在每一列的0 位置.我们可以选择行,但您的 X 是列向量,所以我想我们会保持一致.
The fourth argument axis=0 specifies that the insertion should happen at position 0 for every column. We could've chosen rows but your X is a columns vector, so I figured we'd stay consistent.
推荐阅读
热点文章
Discord.py(重写)on_member_update 无法正常工作
0
Discord.py 在 vc 中获取用户分钟数
0
discord.py 重写 |为我的命令出错
0
Discord.py rewrite 如何 DM 命令?
0
播放音频时,最后一部分被切断.如何解决这个问题?(discord.py)
0
在消息删除消息 Discord.py
0
如何使 discord.py 机器人私人/直接消息不是作者的人?
0
(Discord.py) 如何获取整个嵌入内容?
0
Discord bot 尽管获得了许可,但不能提及所有人
0
Discord.py discord.NotFound 异常
0
