[Numpy-discussion] scaling of the covariance matrix in np.polyfit

2018-09-27 Thread Andreas Nußbaumer
Hi, a while ago I tried to figure out what holds back the PR 11197. Could anyone have a look? Thanks for your help. Andreas ___ NumPy-Discussion mailing list NumPy-Discussion@python.org https://mail.python.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] PR Cleanup

2018-09-27 Thread Matthew Harrigan
Marten, I think a ufunc route is pretty straightforward assuming there is a higher level function. It would be something like this: def wrapper_for_all_equal(x, y): return np.private_ufunc_all_equal(*np.broadcast_arrays(x, y)) The largest outstanding issue I see are what the api should be.