Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个距离X需要在Y时间内完成。
如果我每次T走一步,我的步长应该是多少?
例如:我的距离是 360 应该在 5 秒内完成,每 10 米走一步,我的步长应该是多少?
这个方程是什么?
步数为 5 秒 / 0.01 秒(10 毫秒)= 5 秒内 500 步。
每步距离 = 360/500 = 0.72 个单位(步长以您使用的任何单位表示)。
你有Y时间和T- 时间一步。然后你会做Y/T步骤。所以你必须逐步覆盖距离X。Y/T然后yourStepLength = X/(Y/T) = X/Y*T.
Y
T
Y/T
X
yourStepLength = X/(Y/T) = X/Y*T.