Dfiference between euclidean and distance function using MAPPING toolbox for latitude and longitude calulation??
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
yashvin
el 25 de Jun. de 2015
Comentada: yashvin
el 26 de Jun. de 2015
Can you please a give a simply example where the use of euclidean distance and the use of distance from map leads to a different result?
Please find below my code where A and B, contains [lat,long] in degrees
A=[-0.8147,0.9058]
B=[-0.9575,0.7922]
distances_euclidean = sqrt(sum(bsxfun(@minus, B, A).^2,2));
distance_map=distance(A,B)
Both leads to same value? so please give an example for different lat and long where euclidean and distance from MAP leads to different outcome?
0 comentarios
Respuesta aceptada
Walter Roberson
el 25 de Jun. de 2015
Your latitudes are very near 0, where longitudes are the maximum distance apart. Add (for example) 70 or 80 degrees to those latitudes and you will get different answers, especially if you also increase the range of longitudes.
Más respuestas (1)
Sean de Wolski
el 25 de Jun. de 2015
Pretty much everywhere. One is a measurement on the surface of a sphere or an ellipsoid. The other is the straight distance between the two points.
As a frequent flyer, it sure would be nice to be able to fly the euclidean distance, but that would mean really deep tunnels and no views.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!