trilateration icon indicating copy to clipboard operation
trilateration copied to clipboard

How to do that with multi-processing

Open amazingProj opened this issue 3 years ago • 1 comments

Hii I try to understand how to do it parallel, do you have any idea?

amazingProj avatar Feb 15 '22 14:02 amazingProj

The trilateration itself is done by the Levenberg–Marquardt algorithm, which is a standard implementation. So calculating the result for a single problem in parallel is not simple and would lead you to implementing a new algorithm. Hence this is way out of scope. You could of course just run the trilateration with multiple positions in parallel. E. g. using different threads or parllel streams..

kburfi avatar Feb 16 '22 10:02 kburfi