diff src/op-s-m.cc @ 2825:60ae49e1284f

[project @ 1997-03-25 23:17:36 by jwe]
author jwe
date Tue, 25 Mar 1997 23:32:15 +0000
parents 5bcee07be597
children 8b262e771614
line wrap: on
line diff
--- a/src/op-s-m.cc
+++ b/src/op-s-m.cc
@@ -102,7 +102,7 @@
 {
   CAST_BINOP_ARGS (const octave_scalar&, const octave_matrix&);
 
-  BOOL_OP (<, Matrix ());
+  BOOL_OP (<, boolMatrix ());
 }
 
 static octave_value
@@ -110,7 +110,7 @@
 {
   CAST_BINOP_ARGS (const octave_scalar&, const octave_matrix&);
 
-  BOOL_OP (<=, Matrix ());
+  BOOL_OP (<=, boolMatrix ());
 }
 
 static octave_value
@@ -126,7 +126,7 @@
 {
   CAST_BINOP_ARGS (const octave_scalar&, const octave_matrix&);
 
-  BOOL_OP (>=, Matrix ());
+  BOOL_OP (>=, boolMatrix ());
 }
 
 static octave_value
@@ -134,7 +134,7 @@
 {
   CAST_BINOP_ARGS (const octave_scalar&, const octave_matrix&);
 
-  BOOL_OP (>, Matrix ());
+  BOOL_OP (>, boolMatrix ());
 }
 
 static octave_value
@@ -189,7 +189,7 @@
 
   SC_MX_BOOL_OP (double, s, v1.double_value (),
                  Matrix, m, v2.matrix_value (),
-		 s && m (i, j), Matrix ());
+		 s && m (i, j), boolMatrix ());
 }
 
 static octave_value
@@ -199,7 +199,7 @@
 
   SC_MX_BOOL_OP (double, s, v1.double_value (),
                  Matrix, m, v2.matrix_value (),
-		 s || m (i, j), Matrix ());
+		 s || m (i, j), boolMatrix ());
 }
 
 static octave_value *