diff scripts/linear-algebra/dot.m @ 3176:fccab8e7d35f

[project @ 1998-05-18 20:33:31 by jwe]
author jwe
date Mon, 18 May 1998 20:33:42 +0000
parents 096940972434
children 041ea33fbbf4
line wrap: on
line diff
--- a/scripts/linear-algebra/dot.m
+++ b/scripts/linear-algebra/dot.m
@@ -37,9 +37,9 @@
       endif
     else
       if (y_nr == 1)
-	z = y * x';
+	z = y * x;
       else
-	z = y * x;
+	z = y' * x;
       endif
     endif
   else