Set of points to Cartesian system

Hello,
what whould be the fastest way to calculate the Cartesian coordinates from a distance matrix? First vertex would be at x=0 y=0 and second vertex at x=0 y=dist(V1V2).
THX

 채택된 답변

Matt Tearle
Matt Tearle 2011년 12월 8일

0 개 추천

You can use cmdscale to reconstruct coordinates from distances. You will need a further restriction to determine the locations uniquely (eg y2 > 0). But here's a way to get what you've specified:
% Make some Euclidean coord data
x = [0 0;0 2*rand - 1;2*rand(5,2) - 1];
% Construct distance matrix
d = squareform(pdist(x))
% Reconstruct Euclidean coords from distances
X = cmdscale(d);
% Shift center to first point
X = bsxfun(@minus,X,X(1,:));
% Rotate so x_2 = 0
alpha = atan2(X(2,1),-X(2,2));
R = [cos(alpha),-sin(alpha);sin(alpha),cos(alpha)];
X = X*R
If you compare X and the original x, you'll see that there can be sign ambiguities. You could nail that down, though, if it matters.

댓글 수: 3

Walter Roberson
Walter Roberson 2011년 12월 8일
cmdspace? Interesting; I had never seen that before.
Matt Tearle
Matt Tearle 2011년 12월 16일
Did Walter just say "I had never seen that before"? I think I get some kind of award now...
Walter Roberson
Walter Roberson 2011년 12월 16일
Well, it is part of the Stats toolbox, and I do prefer to use software that works more than 19 times out of 20.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Walter Roberson
Walter Roberson 2011년 12월 8일

0 개 추천

x = zeros(1+length(Dists),1);
y = [0; cumsum(Dists(:))];
Ah, the joys of not providing sufficient examples...
Denny Milakara
Denny Milakara 2011년 12월 9일

0 개 추천

Thank you guys!
I wasn't aware of 'cmdscale'. Anyways, I need it in 2D so I use from now on mdscale.
I always say that the worst part of Matlab is its help: it prevents people of being aware how powerful Matlab really is.
Cheers

카테고리

도움말 센터File Exchange에서 Dimensionality Reduction and Feature Extraction에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by