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
Inside the LoOP filter in point_outlier.h, there is a step that approximates the error function (erf)
erf(x) ~ 1 - 1 / dem where dem = 1 + a1*x + a2*x^2 + a3*x^3 + a4*x^4
However, this seems to be missing an exponent to the 4th power. See the actual approximation to erf should be:
erf(x) ~ 1 - 1 / dem^4
Is this a bug or an intentional difference?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Inside the LoOP filter in point_outlier.h, there is a step that approximates the error function (erf)
However, this seems to be missing an exponent to the 4th power. See the actual approximation to erf should be:
Is this a bug or an intentional difference?
The text was updated successfully, but these errors were encountered: