Zoltán Vörös

Results 229 comments of Zoltán Vörös

@street-grease-coder If you look at the notes section of https://numpy.org/doc/stable/reference/generated/numpy.cov.html, isn't everything you need already implemented in `ulab`?

@street-grease-coder What I meant is that you can calculate the covariance matrix in 5 `numpy` statements ```python m = np.arange(10, dtype=np.float64) >>> f = np.arange(10) * 2 >>> a =...

No, I don't think so. `ulab` is tightly integrated into the `micropython` firmware. It is really not like `python` on a PC, where you can install arbitrary libraries after the...

Thanks for bringing this up! I will try to sort it out.

> @vega1013 > > > The qr functions seems to calculate wrong values if i'm not totally wrong. > > QR decomposition isn't unique, and this is a valid QR...

@CallumJHays Cal, I am struggling to understand, what this PR is trying to fix: while ``` a = array(5) ``` is perfectly valid in `numpy`, this seems to create a...

> @v923z The main point of the PR will only affect `ndarray.__init__()`, following the numpy behaviour: > > ```python > >>> import numpy as np > >>> np.ndarray([1, 2, 3])...

> @v923z that last commit has the basic functionality of passing `shape` in, and the tests have been corrected. Sorry for dragging my feet but work and social life has...

@CallumJHays do you want to go ahead with this PR? I could take over, if you have no time. I would just like to close the issue, because I think...

This is correct, but I don't see at the moment, where the problem is. I am afraid, it might have to do with how `micropython` is implemented. I will look...