We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Request from IHEP for a Gauss Fitting function as: f(x) = a e^{-(x-b)^2/c^2} that a is a,b,c are tune able parameters.
gaussfit(VDouble x, VDouble a, VDouble b, VDouble c) : VDouble result
The text was updated successfully, but these errors were encountered:
I don't think you have that right: that's just creating a gaussian. A gaussian fit gets the data and returns the parameters of the gaussian.
Sorry, something went wrong.
Yes, here is just for the Gaussian Function .Maybe the fitting can be done elsewhere,for generating the a,b,c and passing them here?
No branches or pull requests
Request from IHEP for a Gauss Fitting function as:
f(x) = a e^{-(x-b)^2/c^2}
that a is a,b,c are tune able parameters.
gaussfit(VDouble x, VDouble a, VDouble b, VDouble c) : VDouble result
The text was updated successfully, but these errors were encountered: