Zoltán Vörös
Zoltán Vörös
@vikas-udupa Vikas, according to the documentation, https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.cho_solve.html, the first argument of `cho_solve` is a tuple, while https://github.com/v923z/micropython-ulab/pull/391 implements it with a single matrix. I overlooked the issue at the time,...
Dtype mod
This PR adds the option to extend `ulab` in a transparent way. This means that the user is able to add their own data container in the C implementation, and...
@jepler The creation of `ndarray`s from buffers should conform to `numpy`'s behaviour, i.e., if the buffer is mutable, `frombuffer` should produce a view, otherwise, a copy. Background can be found...
https://numpy.org/doc/stable/reference/generated/numpy.cov.html Starting point based on https://github.com/v923z/micropython-ulab/issues/183
If you find that you would need a `numpy` function that is not implemented in `ulab`, please, open a new issue for each function you want to have implemented. This...
Hi Lorenz, I have just installed your addon in the very latest version of freecad. I can create cogwheels, but whenever I change any of the parameters, the part is...
**Describe the solution you'd like** Implement fancy indexing based on https://numpy.org/doc/stable/reference/generated/numpy.take.html **Additional context** The implementation would resolve https://github.com/v923z/micropython-ulab/issues/607 in the most frequent use cases.
Details and rationale are outlined in https://github.com/v923z/micropython-ulab/blob/spectrum/docs/ulab-utils.ipynb, but the gist is that `spectrogram` now allows for the re-use of allocated memory (through the `out`, and `scratchpad` keyword arguments), as well...
As described in https://github.com/v923z/micropython-ulab/discussions/597, add the C implementation of https://numpy.org/doc/stable/reference/generated/numpy.correlate.html @hamza-712
As mentioned in https://github.com/v923z/micropython-ulab/issues/671, the following code leads to a crash: ```python filtered_boxes = np_boxes[np_boxes[:, 4] > 0.0] ``` @kwagyeman