Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Compact radial basis functions and generic polynomial basis / Utility for moving least squares #954
Compact radial basis functions and generic polynomial basis / Utility for moving least squares #954
Changes from 8 commits
d4544ba
32396dc
6ffe87c
96af593
6b1c234
4a4b56a
e896eef
3d0ab88
79947bd
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add a link to some place that defines these CRBF, in case we want to add more in the future, and as a place to check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As they were taken from DTK I do not know the exact origin of those functions. Those are the supposed sources, but I would need confirmation before adding them:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A better Wendland paper is https://doi.org/10.1007/BF02123482. However, the shape seems to depend on the dimension. In addition, in Wu's paper, there's some parameter$l$ . I also didn't see any derivations of Buhmann, so we are essentially are using the magic formulas from DTK-2.0.
So, I think it's worthwhile to understand
We don't need to do it right now, but I think a comment with a
FIXME
would be appropriate.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This introduces a new dependency on
boost::math
, I think. According to this, it only has optional compiled binary, but can be used header only. So I think we don't need to update CMake's boostREQUIRED_COMPONENTS
.