h5pp
hdf5 포맷 r/w 용으로 나온 표준 libhdf5 를 사용하면 코딩량이 많을수밖에 없다.. 찾아보니 h5pp 라는 라이브러리가 있길래 테스트해봄. https://github.com/DavidAce/h5pp 코드도 짦아지고.. 백터도 지원하고 좋은것 같음. #include typedef struct { unsigned int id; float x, y, z; } T_NODE; int main(int argc, char *argv[]) { //h5pp::File file("test.h5", h5pp::FileAccess::REPLACE, 0); h5pp::File file("test.h5", h5pp::FileAccess::REPLACE); h5pp::hid::h5t T = H5Tcreate(H5T_CO..