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 ?
13 ビュー (過去 30 日間)
古いコメントを表示
Muhammad Iqbal
2020 年 4 月 12 日
コメント済み: Puru Bhatia
2020 年 10 月 20 日
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.
2 件のコメント
Amol Shahane
2020 年 4 月 16 日
Time_2nd=(2*60*60)+(01*60)+39;
Distance_2nd=42.195*1000;
marathon=(Distance_2nd*18)/(Time_2nd*5)
Puru Bhatia
2020 年 10 月 20 日
distance2=42.195;
time2= 2+(1/60)+(39/3600);
marathon=distance2/time2
採用された回答
Sairam Vamsi Tadikamalla
2020 年 4 月 13 日
distance2=42.195*1000;
time2=(2*60*60)+(01*60)+39;
marathon=distance2*18/(time2*5);
disp(marathon);
1 件のコメント
その他の回答 (4 件)
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 件のコメント
AHMED ELKAFAFY
2020 年 4 月 13 日
now i understand this question
this man run 42.195 kilometers in 2 hours and 1 minite and 39 sec
so it is very simple
Muhammad Faizan Naveed
2020 年 4 月 15 日
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);
1 件のコメント
Khom Raj Thapa Magar
2020 年 6 月 15 日
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);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Dates and Time についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!