# HG changeset patch # User John W. Eaton # Date 1386365996 18000 # Node ID 0fa235a252a5c26ea2f539469742bc7152de4101 # Parent a6cfe292bfb6b5c664071abc76879aa941a0497d fix cut and paste error in Matrix by ComplexMatrix multiplication operator * fCMatrix.cc (operator * (const FloatMatrix&, const FloatComplexMatrix&)): Fix cut and paste error. diff -r a6cfe292bfb6 -r 0fa235a252a5 liboctave/array/fCMatrix.cc --- a/liboctave/array/fCMatrix.cc Thu Dec 05 18:43:42 2013 +0100 +++ b/liboctave/array/fCMatrix.cc Fri Dec 06 16:39:56 2013 -0500 @@ -3755,7 +3755,7 @@ if (a.rows () > std::min (m.rows (), a.columns ()) / 10) return FloatComplexMatrix (m * real (a), m * imag (a)); else - return m * FloatComplexMatrix (a); + return FloatComplexMatrix (m) * a; } /*