gpt4 book ai didi

python - resize 和 reshape 有什么区别

转载 作者:行者123 更新时间:2023-12-01 21:22:39 26 4
gpt4 key购买 nike

我正在写一行代码,但得到了一些奇怪的输出。

a = np.arange(2,11).resize((3,3))
print(a)

a = np.arange(2,11).reshape((3,3))
print(a)

第一个给我 None 但第二个给了我一个 3X3 矩阵。但是当我在不同的行中编写第一个代码时,它不会给我 None

a = np.arange(2,11)
a.resize((3,3))
print(a)

在这种情况下,resize 和 reshape 之间有什么区别?一般情况下有什么区别?

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