Closed v923z closed 1 year ago
As mentioned in https://github.com/v923z/micropython-ulab/issues/579, sort_complex results in a crash.
sort_complex
try: from ulab import numpy as np except: import numpy as np dtypes = (np.uint8, np.int8, np.uint16, np.int16, np.float, np.complex) for dtype in dtypes: print(np.sort_complex(np.array(range(5, 0, 81), dtype=dtype)))
As mentioned in https://github.com/v923z/micropython-ulab/issues/579,
sort_complex
results in a crash.