new .flat property, numpy.linalg.qr function
This release implements the .dtype
, .itemsize
, .shape
, .size
, and .strides
getter properties for micropython (these getters are already included in circuitpython), and adds the .T
ndarray property for the transpose, the .shape
setter (in micropython), and the flat iterator for higher dimensional arrays, accessible via the .flat
property (in micropython).
In addition, the numpy.linalg
module has a new function, qr
for the QR decomposition. The bug in the calculation of the sum of 4D arrays has also been squashed.
Behind the scenes, the code base has been re-organised, so that the circuitpython
documentation can be generated in a consistent way.