lozanodorian
Results
2
issues of
lozanodorian
### Is your feature request related to a problem? Please describe. #### Context The Chebyshev distance $\mathrm{d}(u, v) \overset{\text{def}}{=} \underset{1\leq i \leq n}{\max}\left|u_i-v_i\right|$ can be computed in `scipy.spatial.distance` by using...
enhancement
scipy.spatial
Probably a silly remark, but we couldn't explain this behavior with my team. When we profile a loop with a built-in iterator, e.g.: ```py for _ in range(10 ** 7):...