Skip to content

new .flat property, numpy.linalg.qr function

Compare
Choose a tag to compare
@v923z v923z released this 22 Jul 18:23
· 317 commits to master since this release
8d93dde

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.