[scikit-image] Python 3, revisited
Matthew Brett
matthew.brett at gmail.com
Tue Jul 11 04:42:32 EDT 2017
Hi,
Certainly no need to duck, from my point view - but for this:
On Tue, Jul 11, 2017 at 3:07 AM, Juan Nunez-Iglesias
> Beautiful linalg syntax ruined by using Python 2.7
> https://github.com/scikit-image/scikit-image/pull/2394#discussion_r94191032
- do you mean differences like:
D1 = np.vstack([x.dot(x), x.dot(y), y.dot(y)]).T
compared to:
D1 = np.vstack([x @ x, x @ y, y @ y]).T
?
Cheers,
Matthew
More information about the scikit-image
mailing list