Kenyan Eliud Kipchoge set a new world record for men of 2:01:39 on September 16, 2018. Assign his average speed in km/h to the variable marathon. The marathon distance is 42.195 kilometers? How to Calculate ?

32 次查看(过去 30 天)
Kenyan Eliud Kipchoge set a new world record for men of 2:01:39 on September 16, 2018. Assign his average speed in km/h to the variable marathon. The marathon distance is 42.195 kilometers.

采纳的回答

Sairam Vamsi Tadikamalla
distance2=42.195*1000;
time2=(2*60*60)+(01*60)+39;
marathon=distance2*18/(time2*5);
disp(marathon);

更多回答(4 个)

Walter Roberson
Walter Roberson 2020-4-12
Speed is number of kilometers travelled divided by number of hours spent travelling. But you would have known that from the definition of speed, and that is not a MATLAB question.
  3 个评论

请先登录,再进行评论。


Muhammad Faizan Naveed
Question 1
Track_distance_in_km=100./1000;
Time_in_h=9.58./3600;
hundred=Track_distance_in_km./Time_in_h
Question 2
Time_2nd_question=(2.*60.*60)+(01.*60)+39;
Distance_2nd=42.195.*1000;
marathon=(Distance_2nd.*18)./(Time_2nd_question.*5);

vmnf kfnk
vmnf kfnk 2020-4-27
y=0.1/9.58;
hundred=y*3600
x=42.195/((121*60)+39);
marathon=x*3600

Khom Raj Thapa Magar
distance_in_km = 100./1000;
time_in_h = 9.58 / (60. * 60);
hundred = distance_in_km / time_in_h;
disp(hundred);
Time_2nd_question=(2.*60.*60)+(01.*60)+39;
Distance_2nd=42.195.*1000;
marathon=(Distance_2nd.*18)./(Time_2nd_question.*5);
disp(marathon);

类别

Help CenterFile Exchange 中查找有关 Graph and Network Algorithms 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by