lemmingapex / trilateration

Solves a formulation of n-D space trilateration problem using a nonlinear least squares optimizer
MIT License
398 stars 106 forks source link

How do i get coordinate of esclipe's point #17

Closed vitrinh282 closed 6 years ago

vitrinh282 commented 6 years ago

where do i get coordinate (x,y) from output?

lemmingapex commented 6 years ago

Did you look at the README and/or the tests?

vitrinh282 commented 6 years ago

yes , but i'm still not clear, could you explain me how to get it?

lemmingapex commented 6 years ago

// the answer double[] centroid = optimum.getPoint().toArray();

System.out.println("x: " + centroid[0]); System.out.println("y: " + centroid[1]);

quangvi282 commented 6 years ago

thks but could you tell me about beacons? how many percents is right ?