gpt4 book ai didi

python - 任何人都可以帮助解决 TypeError : 'float' object is not callable' in following code

转载 作者:太空宇宙 更新时间:2023-11-03 13:55:44 37 4
gpt4 key购买 nike

我在下面的代码中编写了一个速度和加速度函数:

from math import exp

def kinematics(x,t,dt=1E-4):

x=x(t)
v_x=(x(t+dt)-x(t-dt))/(2*dt)
a_x=(x(t+dt)-2*x(t)+x(t-dt))/(dt**2)
return x,v_x,a_x

x=lambda t:exp(-(t-4)**2)

print(kinematics(x,5,dt=1E-5))

但是我得到以下错误:

TypeError: 'float' object is not callable

谁能指出错误?

最佳答案

您正在将 lambda 重新分配给 lambda 的返回值。

x=x(t)

在这一点之后,x 不再是 lambda,而是一个 float

关于python - 任何人都可以帮助解决 TypeError : 'float' object is not callable' in following code,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55964278/

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