h5cpp
h5cpp copied to clipboard
C++ wrapper for the HDF5 C-library
# The current situation * all support for 3rd party libraries (including h5py or even the C++ standard library) lives in the source directories of the main library * some...
Once nice thing about https://github.com/steven-varga/h5cpp is that it works with matrix libraries (Armadillo, Eigen, ...) out of the box. I 'm writing a uniform HDF5 interface with h5cpp and prefer...
Since the last minor release v0.4 was about one year ago therefore I think it would be good ideastart to think about the new release. In my opinion it would...
cmake 22.3 gcc 9.3 linux 20.04 all deps satisfied cmake does not build /doc
One more think which can be speed-up is `ObjectHandle.close()` which is called quite often. It can be done by avoiding calls to `H5Iget_type` and storing the object type in the...
Could we have instead of: ``` uint32_t v = 0; attr.read(v); ``` this: ``` auto v = attr.read(); ``` Just an idea
And also modify `examples/read_dataset.cpp` to use point selection
Create code examples that mimic the exact functionalities demonstrated in the C-API and CPP-API examples provided by HDF group, with links to them. This way we can have an exact...
The current selection interface, though it can do everything we want is rather tedious. We need something better here. Most probably based on operators.