-
Notifications
You must be signed in to change notification settings - Fork 64
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
Regular grid interpolation #244
Merged
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
b01db55
added tests for regular grid interpolation
flabowski b3d3001
added regular grid interpolation module
flabowski fe25304
added some tests
flabowski 880962b
wrapper for scipy's regular grid interpolation
flabowski ce6b8e4
removed some comments
flabowski 8df7469
minor code style improvements
flabowski 6977a9e
adjusted docsting
flabowski 24bee31
added pre-processing to map points and values onto regular grid in 2D
flabowski b5835b8
modified pre-processing to map points and values onto regular grid in nD
flabowski a9deaa0
modified the regular grid interpolation so it works with the grid poi…
flabowski 98d1425
removed useless fill_value argument
flabowski 761fcde
added a doc file for the automatic doc generation of the new module
flabowski 9326752
improved docstring of get_grid_axes
flabowski c2692fb
moved ValueError to the right place and adjusted the error message.
flabowski 3f79063
added docstring for predict method
flabowski eb7f1a3
removed 'dim' variable
flabowski 706bae7
removed calculate_flat_index(...) entirely
flabowski 4148b4f
removed TODO comment
flabowski 4a77030
other cosmetic changes
flabowski 638af8d
some simplifications, no need to operate with the transposed of the v…
flabowski e49ad18
reverted suggested change, as it changed the behaviour
flabowski 3f77b6a
improved code style
flabowski 48f0c42
updated autogenerated rst and added it to the code documentation
flabowski 1d8b690
added test to make sure exception is raised.
flabowski 2ad23ae
removed 'def' member manually
flabowski File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ Code Documentation | |
ae | ||
podae | ||
reducedordermodel | ||
regular_grid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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 is not needed. Or at least we don't use it in the other files. I am not sure about the generated outcome...
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.
I am not sure either. The file was generated automatically when ran
make_rst.sh
. Some other things seem to be fishy.edit: everything seems fine after reverting what
make_rst.sh
did. @ndem0 maybe some commands need to be updated?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.
We are not using that script anymore! Sorry, it's not written, I gonna remove it in the next release of EZyRB (#232).
The file now looks correct, thanks!