extern crate npy_derive;
extern crate npy;
use Read;
use NpyData;
// examples/simple.npy is generated by this Python code:
//
// import numpy as np
// a = np.array([(1,2.5,4), (2,3.1,5)], dtype=[('a', 'i4'),('b', 'f4'),('c', 'i8')])
// np.save('examples/simple.npy', a)