h5py_File_read_ndarray#

pybrops.core.util.h5py.h5py_File_read_ndarray(h5file, fieldname)[source]#

Read a numpy.ndarray from a file as is. Do not perform any type conversions.

Bare-bones function. Does not perform any type checks on inputs.

Parameters:
  • h5file (h5py.File) – An open, readable HDF5 file stream.

  • fieldname (str) – Name of the field from which to read.

Returns:

out – An array read from the HDF5 file.

Return type:

numpy.ndarray