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.
This completes the array numpy-like interface, with set support. You can now do:
If you set with an array, and you leave off one or both endpoints, you can set the flow bins too:
A few notes:
These are not supposed to be deficiencies, just choices.
Dimension adding broadcasting is not supported.
You have to be explicit unless setting with a scalar:
Explicit is better than implicit (and in some cases, Numpy actually does this too, such as when setting a non-complete range on the left).
Mismatched data type dimensions not supported
You can't write
If h has a 2, 3, or 4 item dtype (accumulators).
Currently, setting a histogram with another histogram is not supported, use
h[...] = h2.view().Removes the old experimental
copy_in, this now can be accomplished in Python without the C++ due to the full no-copy views on all storages!Now only adds the helpful message about compiling if it was truly not able to import
_core.Includes more docs, including a fix for another invalid statement.
Closes #189.