Record Array Data Structure
(Redirected from Record Matrix)
Jump to navigation
Jump to search
A Record Array Data Structure is an Array Data Structure whose members are Data Records.
- AKA: Record Array.
- Example(s):
String[][][] myStringArray = new String[10][5][17];
, a Java Array.- …
- Counter-Example(s):
- a Database Table (which is typically indexed with a b-tree).
- a Column-Oriented Table.
- See: Numerical Array.
References
2013
- 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’.
- 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.