gpt4 book ai didi

python - 类型错误 : 'numpy.float64' object is not callable

转载 作者:太空狗 更新时间:2023-10-29 22:01:13 31 4
gpt4 key购买 nike

所以,我想做的是从给定 > 范围的数组中的某些位置获取某些数字,并将它们放入方程中

yy = arange(4)
xx = arange(5)
Area = ((xx[2] - xx[1])(yy[2] + yy[1])) / 2

我试着运行它,我得到了这个..

----> ((xx[2] - xx[1])(yy[2] + yy[1])) / 2
TypeError: 'numpy.int64' object is not callable

我收到错误..我如何使用数组中的某些数字并将它们放入方程式?

最佳答案

Python 不遵循与书面数学相同的规则。您必须明确指出乘法。

差:

(a)(b)

(除非 a 是一个函数)

好:

(a) * (b)

关于python - 类型错误 : 'numpy.float64' object is not callable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19828212/

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