I just looked at the docs in the section on Performance Tips. There is an example:
norm(A::Vector) = sqrt(real(dot(x,x)))norm(A::Matrix) = max(svd(A)[2]) It would seem that the first case is a typo. I would have thought that it should read norm(A::Vector) = sqrt(real(dot(A,A))) Is this true? Thanks. Comer
