How to calculate euclidean from Geodesic distance in matrix
Mostrar comentarios más antiguos
Hello.
I wanna calculate Geodesic distance from euclidean distance in matrix.
I have a code pairwise euclidean distance.
clear all
close all
X = csvread('running43.csv');
n = size(X,1);
D1 = pdist(X);
D1 = squareform(D1)/norm(D1,2);
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Geometric Geodesy en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!