Filter löschen
Filter löschen

How to find co-ordinates of a point in 3D using Matlab functions?

1 Ansicht (letzte 30 Tage)
Abhinav
Abhinav am 22 Okt. 2014
Beantwortet: Roger Stafford am 22 Okt. 2014
I am trying to determine the (x,y,z) coordinates of a point p. What I have are the Euclidean distances to 3 different points m1, m2, m3 with known coordinates.
I am looking for Matlab functions that will help me solve this problem. My math is not so strong. Any help will be appreciated. Thank you

Antworten (2)

Roger Stafford
Roger Stafford am 22 Okt. 2014
This problem is equivalent to finding the common points of intersection of three spheres. You should realize that if there are any solutions at all, there are almost always two of them. At the following Answers thread:
http://www.mathworks.com/matlabcentral/answers/116045
you will find a method of solution for this problem which I gave back in February of this year.

Zoltán Csáti
Zoltán Csáti am 22 Okt. 2014
Let the coordinates of the unknown point be x,y,z and m1(x1,y1,z1), m2(x2,y2,z2), m3(x3,y3,z3), moreover the known Euclidean distances d1, d2, d3 respectively. You can write 3 equations for the 3 unknowns: (x-x1)^2 + (y-y1)^2 + (z-z1)^2 = d1^2, ... Now, solve them for x, y and z.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by