Right now there is no optimised build in function for that operation. Julia's dot wraps BLAS' xdotc for complex arguments and xdotu (which is what you want) is not wrapped at all.
Maybe it would be better if the BLAS wrappers have the same names as the BLAS functions except for the data type letter, i.e. dot, dotu and dotc. 2014/1/2 Sheehan Olver <[email protected]> > > I want to do > > a.'*b > > where a and b are Vector{Complex}, but this returns an Array, not a > constant, and probably does unneccesary memory allocation for when > constructing a.' > > If it was > > a'*b > > I can just replace it with dot(a,b). Is there an equivalent that doesn't > conjugate the first argument? > -- Med venlig hilsen Andreas Noack Jensen
