我在处理范围内的双数时遇到问题。具体来说:
using ForwardDiff: Dual
t = Dual.((0.0,10.0),0)
(t[1]:1/60:t[2])[end]
问题似乎是[end]
使用last
which then what's 来计算步数,所以有些东西试图转换为 anInteger
并失败。有谁知道解决这个问题的方法?
我在处理范围内的双数时遇到问题。具体来说:
using ForwardDiff: Dual
t = Dual.((0.0,10.0),0)
(t[1]:1/60:t[2])[end]
问题似乎是[end]
使用last
which then what's 来计算步数,所以有些东西试图转换为 anInteger
并失败。有谁知道解决这个问题的方法?