adafruit / circuitpython

CircuitPython - a Python implementation for teaching coding with microcontrollers
https://circuitpython.org
Other
4.07k stars 1.2k forks source link

Documentation issue #8431

Closed thetazero closed 1 year ago

thetazero commented 1 year ago

CircuitPython version

n/a

Code/REPL

Just the docs here: https://docs.circuitpython.org/en/latest/shared-bindings/ulab/numpy/linalg/index.html#ulab.numpy.linalg.eig

Behavior

image

It says it returns (eigenvectors, eigenvalues) while it actually returns (eigenvalues, eigenvectors).

Actual behavior is inline with numpy.

Description

No response

Additional information

Happy to fix this myself, just need to be pointed in the right direction.

dhalbert commented 1 year ago

ulab is a submodule: the original repo is here: https://github.com/v923z/micropython-ulab/. So submit issues and PR's to that repo.

thetazero commented 1 year ago

This issue appears on the circuit python docs, not on the micropython ulab docs.

jepler commented 1 year ago

If they've fixed it already, then we will get the fix next time we update ulab. This is likely to happen soon.

dhalbert commented 1 year ago

@thetazero Could you link to the docs where the order is correct?