Advertisement
vlpap

Untitled

Sep 9th, 2020
729
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import numpy as np
  2.  
  3. dt = np.dtype([('event_id', np.uint32), ('track_id', np.uint32), ('x', float), ('y', float), ('z', float)])
  4. hits = np.fromfile('your path', dtype=dt)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement