Module: Hdf5

Extended by:
FFI::Library
Defined in:
lib/hdf5.rb

Overview

This is a module for reading and manipulating HDF5 (Hierarchical Data Format) files. At the current time (July 2014) it is capable of basic reading operations. However, its use of the FFI library means that extending its capabilities is easy and quick. For a basic example see the test file.

Basic usage:

file = Hdf5::H5File.new('filename.hdf5')
dataset = file.dataset('/path/to/dataset')
narray = dataset.narray_all
file.close

Defined Under Namespace

Modules: H5Library, H5Types Classes: H5Dataset, H5Dataspace, H5Datatype, H5File, H5Group