Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#!/usr/bin/env python
import h5py
import numpy as np
import scipy as sp
import scipy.ndimage as spi
import matplotlib.pyplot as plt

Basic operations

Let us consider basic operation which you have to code in order to access HDF5 dataBasic operations allows to access the dataset records from HDF5.

  • Open file, get dataset, get array for current event, and close file:

...