Respuesta :
Answer:
Here is the code for you:
function distanceMiles = CalculateDistance(timeHours, rateKPH)
%timeHours: Time in hours
%rateKPH: Rate in kilometers
rateMPH = KilometersToMiles(rateKPH); %Call KilometersToMiles function(below) to assign
%rateMPH with the corresponding speed in miles per
%hour
distanceMiles = rateMPH * timeHours;
end
function milesValue = KilometersToMiles(KilometersValue)
milesValue = KilometersValue * 0.6213712;
end
And the output screenshot is: [Attached]

Answer:
I attached the screenshot of the code and also the output variable.
Explanation:
The code is well commented, the only things required to be done is to add just another line and implement the below function
