gpt4 book ai didi

python - Python 中的 3 维矩阵

转载 作者:行者123 更新时间:2023-11-28 22:56:22 25 4
gpt4 key购买 nike

我如何在 python 中表示 1x1x3 矩阵。在 matlab 中我有

fill_value(1,1,:) = [0; 0; 0];

我已经把它转换成 python 了

fill_value[0:1] = matrix(((0),(0),(0))).T

但它并没有给出预期的结果。

最佳答案

使用标准的 Python 对象?像这样:

>>> fill_value = [[[1, 2, 3]]]
>>> fill_value[0][0][0]
1
>>> fill_value[0][0][1]
2
>>> fill_value[0][0][2]
3

不过你可能想看看 numpy,它对 matrices 有更好的支持。 .

关于python - Python 中的 3 维矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15780076/

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