-
Notifications
You must be signed in to change notification settings - Fork 529
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
Missing table properties #6
Comments
From andrew.c...@gmail.com on November 18, 2008 21:38:39 |
From bioinformed@gmail.com on November 19, 2008 13:48:47 def extend(t,newchunks): I'd rename the current 'extend' to 'resize', since it takes an absolute size and |
From andrew.c...@gmail.com on November 19, 2008 15:39:22 Extend() has been deprecated because it no longer hooks in to the HDF5 H5Dextend() If you want to grow an existing array by a fixed amount you can do something like: dset.resize([x+y for x, y in zip(dset.shape, extension_sequence)]) or for a single axis dset.resize(dset.shape[ax]+amount, axis=ax) |
From bioinformed@gmail.com on November 19, 2008 16:09:37 |
Original author: bioinformed@gmail.com (November 18, 2008 21:01:06)
It would be wonderful if tables published maxsize and the various filter
flags as properties. In addition, a property called 'extendable' as an
alias for 'None in self.maxsize' would be a useful helper.
Original issue: http://code.google.com/p/h5py/issues/detail?id=6
The text was updated successfully, but these errors were encountered: