load arrays from a text file with numpy

python
Published

January 5, 2010

space separated text file with 5 arrays in columns:

[sourcecode language=“python”]
ods,rings,gains,offsets,rparams = np.loadtxt(filename,unpack=True)
[/sourcecode]

quite impressive…