Angenommen zu verlieren ich zwei recarrays mit dem gleichen dtype machen und sie stapeln:Stapel numpy recarrays ohne ihre recarrayness
>>> import numpy as np
>>> dt = [('foo', int), ('bar', float)]
>>> a = np.empty(2, dtype=dt).view(np.recarray)
>>> b = np.empty(3, dtype=dt).view(np.recarray)
>>> c = np.hstack((a,b))
Obwohl a
und b
sind recarrays ist c
nicht:
>>> c.foo
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'numpy.ndarray' object has no attribute 'foo'
>>> d = c.view(np.recarray)
>>> d.foo
array([ 0, 111050731618561, 0,
7718048, 8246760947200437872])
ich kann offensichtlich wieder in eine erneute Anordnung, wie oben mit d
gezeigt, aber das ist unbequem. Gibt es einen Grund, warum das Stapeln von zwei Rekarrays keine weitere Rekombination erzeugt?
Sie bewahren auch nicht die Reklamation. –