Reputation:
How can I do a fast Gauss fitting in C/C++? (1200 data points in a frequency of 25Hz)
Note: I'm not searching for math libaries which you can't use for commercial purpose.
Upvotes: 2
Views: 5571
Reputation: 37510
Try the levmar C/C++ library which is on the GNU license. Just implement your gauss model and feed it in with your starting parameters.
Upvotes: 1