diff scripts/general/is_duplicate_entry.m @ 4030:22bd65326ec1

[project @ 2002-08-09 18:58:13 by jwe]
author jwe
date Fri, 09 Aug 2002 19:00:16 +0000
parents 858695b3ed62
children a0997c4d1d54
line wrap: on
line diff
--- a/scripts/general/is_duplicate_entry.m	Fri Aug 09 07:38:55 2002 +0000
+++ b/scripts/general/is_duplicate_entry.m	Fri Aug 09 19:00:16 2002 +0000
@@ -28,7 +28,7 @@
 function retval = is_duplicate_entry (x)
 
   if (nargin == 1)
-    if (is_matrix (x))
+    if (ismatrix (x))
       [m, n] = size (x);
       lx = m*n;
       lx1 = lx-1;