MATLAB: Write this code in MATLAB.

Write this code in MATLAB.
1. As of early 2018, Usain Bolt holds the world record in the men's 100-meter dash. It is 9.58 seconds. What was his average speed in km/h? Assign the result to a variable called hundred.
2. 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.
Expert Answer

Best Answer

y=0.1/9.58;
hundred=y*3600
x=42.195/((121*60)+39);
marathon=x*3600
Related Question