Ñò
[ÐKc @ sá d Z d d d g Z d d k Z d d k l Z d d k Z d d k Z d d k Z d d k
Z
e i Z h d d 6d d
6d d 6d d
6d d 6d d 6d d 6d d 6d d 6d d 6d d 6d d 6d d 6d d 6Z e i
Z e i Z d „ Z d d d „ ƒ YZ d e i f d „ ƒ YZ d e f d „ ƒ YZ d d d d d e d d „ Z d d d d d e d d „ Z d d d d d d e d d „ Z d „ Z d d d d d d e d d „ Z d d d d d d d e d e d „
Z d S(! ss
Record Arrays
=============
Record arrays expose the fields of structured arrays as properties.
Most commonly, ndarrays contain elements of a single type, e.g. floats, integers,
bools etc. However, it is possible for elements to be combinations of these,
such as::
>>> a = np.array([(1, 2.0), (1, 2.0)], dtype=[('x', int), ('y', float)])
>>> a
array([(1, 2.0), (1, 2.0)],
dtype=[('x', '