gpt4 book ai didi

python - 为什么 Numpy Diag 函数的行为很奇怪?

转载 作者:太空宇宙 更新时间:2023-11-04 10:27:39 27 4
gpt4 key购买 nike

diag 函数不会将结果保存到变量。

import numpy as np
A = np.random.rand(4,4)
d = np.diag(A)

print d
# above gives the diagonal entries of A

# let us change one entry
A[0, 0] = 0

print d
# above gives updated diagonal entries of A

为什么 diag 函数以这种方式运行?

最佳答案

np.diag返回原始数组的 View 。这意味着以后对原始数组的更改会反射(reflect)在 View 中。 (但是,好处是该操作比创建副本快得多。)

请注意,这只是某些版本的 numpy 中的行为。在其他情况下,返回副本。

要“卡住”结果,您可以像 d = np.diag(A).copy() 一样复制它

关于python - 为什么 Numpy Diag 函数的行为很奇怪?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28530493/

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