Calculating Distances with MATLAB's For Statement

  • Context: MATLAB 
  • Thread starter Thread starter hgphtgi
  • Start date Start date
  • Tags Tags
    Matlab
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
hgphtgi
Messages
12
Reaction score
0
Hello Guys

Can you please tell me whether this code is correct or not??

this code use to calculate all distances from A to J points on the map ( has longitude and latitude ), the starting point coordinates ( Lat and Long ) is 3.682043 and 101.523710 and the destination is 2.227804 103.35091

for p1=3.682043:-0.5:2.227804
for p2=101.523710:0.5:103.735091


a5= 2.227804;
b5=103.35091;

[dDgree] = distance(p1,p2,a5,b5); %% this function used to find a distance between two coordinates

end
end
 

Attachments

  • 2untitled.JPG
    2untitled.JPG
    21.6 KB · Views: 476
Physics news on Phys.org
I've never seen a "distance" function- did you write it yourself?