user163408
user163408

Reputation:

How to do fast Gauss fitting in C/C++?

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

Answers (1)

Jon Cage
Jon Cage

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

Related Questions