You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You mention in the readme "We don't support the endian argument to createVariable. The h5py API does not appear to offer this feature."
h5py dose support endianness buts its a component of the dtype i.e. dtype='<f8' is little, while dtype='>f8' is big, you can use the newbyteorder function on a numpy dype object to set it like so
Thanks for pointing this out. If anyone is interested in this feature, please make a pull request.
kmuehlbauer
changed the title
Suggetion: how to support the endian argument to createVariable
Feature Request: support endian argument to createVariable
Feb 4, 2021
You mention in the readme "We don't support the endian argument to createVariable. The h5py API does not appear to offer this feature."
h5py dose support endianness buts its a component of the dtype i.e.
dtype='<f8'
is little, whiledtype='>f8'
is big, you can use thenewbyteorder
function on a numpy dype object to set it like soThe text was updated successfully, but these errors were encountered: