Write a function that receives an input argument of a number of kilometers (km) and will output the conversions into both miles (mi) and US nautical miles (n.m.). Use the conversions: 1 km = 0.621 mi and 1 km = 0.540 n.m.
4 次查看(过去 30 天)
显示 更早的评论
Write a function that receives an input argument of a number of kilometers (km) and will output the conversions into both miles (mi) and US nautical miles (n.m.). Use the conversions: 1 km = 0.621 mi and 1 km = 0.540 n.m.
1 个评论
Steven Lord
2016-10-19
Show what you've done to try to solve this problem and ask a specific question about where you're stuck and you may receive some guidance.
回答(5 个)
James Tursa
2016-10-21
编辑:James Tursa
2016-10-21
1) Create a function file called myconversion.m in your working directory. E.g.,
edit myconversion.m
2) Put the following code into this file:
function [x_mi,x_nm] = myconversion(x_km)
% Insert your code here to convert x_km to x_mi
% Insert your code here to convert x_km to x_nm
return
end
Insert your code for the conversions into the places indicated. Also add comments to this file to state the purpose of the function, show the calling syntax, and explain what the inputs and outputs are.
0 个评论
Christian Hernandez
2019-10-1
function [x_mi,x_nm] = myconversion(x_km)
% Insert your code here to convert x_km to x_mi
% Insert your code here to convert x_km to x_nm
return
end
1 个评论
Najm
2022-11-10
function [x_mi,x_nm] = myconversion(x_km) % Insert your code here to convert x_km to x_mi % Insert your code here to convert x_km to x_nm return end
0 个评论
Yasmin Eady
2024-9-23
function [miles, nmiles] = convert(k)
km_to_miles = 0.621;
km_to_nmiles = 1/1.852;
miles = k * km_to_nmiles;
nmiles = k *km_to_miles;
end
This is what I did. I want to know if this is right.
1 个评论
Yasmin Eady
2024-9-23
I think this is for another problem but I wanted to know if this is the right approch.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!