On Tue, Jul 23, 2013 at 4:35 AM, Dag Sverre Seljebotn
<[email protected]> wrote:
...

> There's lots of uses for A.H to be a conjugating-view, e.g., np.dot(A.H,
> A) can be done on-the-fly by BLAS at no extra cost, and so on. These are
> currently not possible with pure NumPy without a copy, which is a pretty
> big defect IMO (and one reason I'd call BLAS myself using Cython rather
> than use np.dot...)

Wouldn't the simpler way not just be to expose those linalg functions?

hdot(X, Y)  == dot(X.T, Y) (if not complex)
          == dot(X.H, Y)    (if complex)

Josef
_______________________________________________
NumPy-Discussion mailing list
[email protected]
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to