Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
Berlin = [52.5200, 13.4050];
New_York = [40.7128, 74.0059];
London = [51.5074, 0.1278];
d1 = P_distance_km(Berlin, New_York);
d2 = P_distance_km(Berlin, London);
d3 = P_distance_km(London, New_York);
assert(isequal(round(d1),4811))
assert(isequal(round(d2),916))
assert(isequal(round(d3),5820))
d1 =
4811
d2 =
916
d3 =
5820
|
Find relatively common elements in matrix rows
865 Solvers
Project Euler: Problem 5, Smallest multiple
397 Solvers
546 Solvers
250 Solvers
109 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!