You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i.e. "power", "fmod", "arctan2, hypot, ldexp, maximum, minimum"
Example of current problem:
In [1]: from lazyarray import larray, power
In [2]: x = larray([1, 4, 9, 16])
In [3]: power(x, 0.5)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-3-b294233f7ade> in <module>
----> 1 power(x, 0.5)
TypeError: larray_compatible_ufunc() takes 1 positional argument but 2 were given
The text was updated successfully, but these errors were encountered:
i.e. "power", "fmod", "arctan2, hypot, ldexp, maximum, minimum"
Example of current problem:
The text was updated successfully, but these errors were encountered: