Record Array Data Structure

From GM-RKB
Revision as of 07:23, 2 December 2013 by Gmelli (talk | contribs) (Created page with "A Record Array Data Structure is an Array Data Structure whose members are Data Records. * <B>AKA:</B> Record Array. * <B>See:</B> Numerical Array. ---- --...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A Record Array Data Structure is an Array Data Structure whose members are Data Records.



http://docs.scipy.org/doc/numpy/user/basics.rec.html#module-numpy.doc.structured_arrays

    • QUOTE: Numpy provides powerful capabilities to create arrays of structs or records. These arrays permit one to manipulate the data by the structs or by fields of the struct.

      Conveniently, one can access any field of the array by indexing using the string that names that field. In this case the fields have received the default names ‘f0’, ‘f1’ and ‘f2’.