h5cpp icon indicating copy to clipboard operation
h5cpp copied to clipboard

C++17 templates between [stl::vector | armadillo | eigen3 | ublas | blitz++] and HDF5 datasets

Results 13 h5cpp issues
Sort by recently updated
recently updated
newest added

From the documentation seems that there should be two functions: ``` parent ::= fd_t | gr_t; [open] h5::gr_t gopen(parent, const std::string& path [, const h5::gapl_t& gapl]); [create] h5::gr_t gcreate(const L&...

Consider this code: ``` int main() { arma::mat M = arma::linspace(1, 10, 10); M.reshape(2, 5); std::cout

I've just finished setting up h5cpp and I'm trying the examples on [this page](http://h5cpp.org/examples.html). The `basics.cpp` example seems to work fine, but I cannot get the `eigen3.cpp` example to work....

Hi Steven, This pull request contains three commits which allow h5cpp to compile and run using visual studio 2019. Let me know your thoughts. Thanks, Richard

Hi, I would like to add support for OpenCV matrices (`cv::Mat`). All supported matrix classes in `H5M*` are templated based on scalar type (plus other things); `cv::Mat`, on the other...

**H5CPP** increasing popularity justifies the survey of compiler/OS compatibility starting with Linux, expanding to other mainstream Unix Like OS-s and Windows OS. This thread is to report and accumulate user...

Clang 9.0.0 (LLVM) Visual Studio 2019 as IDE. Using my `h5cpp-windows` version of h5cpp, some examples compile fine, some fail (e.g. `stl`) with this error: `h5cpp/H5Dwrite.hpp(60): error : call to...

Currently the HDF5 library is hard to cross compile because of some internals, to ease on the process here are the binaries: [hdf5-1.10.6-arm7f.tar.gz](https://github.com/steven-varga/h5cpp/files/4115674/hdf5-1.10.6-arm7f.tar.gz) The H5CPP library is currently broken for...

Where the Matrix is just not enough, there exists Tensor. This page is to report request or possible mishaps while I am adding tensor support to H5CPP. The list here...

Complex numbers are prevalent in signal processing and more generally scientific computing. BLAS | LAPACK supports complex numbers therefore it is reasonable to have the ability to store the content...