I want to create a data structure of empty numpy array something of this sort:
d[1].foo = numpy.arange(x)d[1].bar = numpy.arange(x)d[2].foo = numpy.arange(x)d[2].bar = numpy.arange(x)
What would be the best option ... a list of dictionaries containing numpy arrays?