changeset 4891:aa7573ddf60f

[project @ 2004-05-06 20:44:15 by jwe]
author jwe
date Thu, 06 May 2004 20:44:15 +0000
parents e7da90a1cc11
children 7e5370e5c7ee
files scripts/linear-algebra/cond.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/linear-algebra/cond.m	Thu May 06 20:36:29 2004 +0000
+++ b/scripts/linear-algebra/cond.m	Thu May 06 20:44:15 2004 +0000
@@ -30,7 +30,7 @@
 function retval = cond (a)
 
   if (nargin == 1)
-    if (ndims (x) > 2)
+    if (ndims (a) > 2)
       error ("cond: Only valid on 2-D objects")
     endif