I have a distance X that needed to get done in Y time.
What should be my step length if I’m doing a step every T time?
For example: my distance is 360 that should be done in 5sec, taking a step every 10milis, what should be my step length?
What is the equation for this?
You have
Ytime andT– time for a step. Then you will makeY/Tsteps. So you have to cover distanceXinY/Tsteps. ThenyourStepLength = X/(Y/T) = X/Y*T.