-
Notifications
You must be signed in to change notification settings - Fork 119
Tps extension #231
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
Tps extension #231
Conversation
Dear @giadadalla, I reopened your PR with the new changes. |
pygem/rbf_factory.py
Outdated
:return: result: the result of the formula above. | ||
:rtype: float | ||
With k=2 the function is "radius free", that means independent of radius value. |
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.
move before parameter description
pygem/rbf_factory.py
Outdated
""" | ||
arg = X / r | ||
result = arg * arg | ||
result = np.power(arg,k) |
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.
please add a blank space after the comma
@ndem0 I changed what you asked me. Let me know if everything is ok |
Thank you for the contribution. Please move the comment regarding |
No description provided.