-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port to C #19
Comments
This trilateration library only depends on apache commons math. If you find a port of apache commons math: https://github.com/Fylax/Apache-Commons-Math3-C- then it should easy to translate this library into c. Make sense? |
Yeah but I could not find a C port. I understand C# better than Java. So I will see if I can port the necessary functions to C from C#. |
Ha! Sorry, I didn't look closely at that Fylax library. Didn't realize it was C#. I see your issue now. My 50 seconds of googling didn't turn much up for a apache commons math c port. The Levenberg–Marquardt algorithm is the key algorithm trilateration utilizes. Is there a library that has an implementation of LMA that might work for you? |
Ok I will dig into that. Thank you. |
Hello, I am also actively looking for C/C++ implementation of multilateration using Levenberg–Marquardt algorithm. This project in java works really great! Thank you for pointing the alglib option. I also tried multilateration approach built in into IT++ library but it is super straightforward and does not handle the noise at all. If anybody comes across full C++ implementation I would appreciate it a lot if he notifies us here. Thank you :) |
hello,do you do it with c port? I am also use this in C. |
Hi! I agree that this project works great and also searched for c++ equivalent unfortunately couldn't find one. Did you manage to find any? |
Not quite the same, but here's a trilateration solver in C++ https://github.com/Wayne82/Trilateration If compiling for Arduino you'll need these too: Eigen C++ - http://eigen.tuxfamily.org/index.php?title=Main_Page StandardCplusplus - https://github.com/maniacbug/StandardCplusplus |
Oh yes I saw this, but it is just simply the linear solution which is not good enough. |
Hi @lemmingapex, I need to use this in C. I checked to see whether I can port it to C but I couldn't find the functions you use with "commons-math". What I saw is only the interface for LeastSquaresOptimizer. Can you please provide link for the functions you used in the project?
Great work. Thank you very much.
The text was updated successfully, but these errors were encountered: