diff scripts/statistics/tests/manova.m @ 4030:22bd65326ec1

[project @ 2002-08-09 18:58:13 by jwe]
author jwe
date Fri, 09 Aug 2002 19:00:16 +0000
parents 38c61cbf086c
children 4c8a2e4e0717
line wrap: on
line diff
--- a/scripts/statistics/tests/manova.m	Fri Aug 09 07:38:55 2002 +0000
+++ b/scripts/statistics/tests/manova.m	Fri Aug 09 19:00:16 2002 +0000
@@ -47,13 +47,13 @@
     usage ("manova (Y, g)");
   endif
 
-  if (is_vector (Y))
+  if (isvector (Y))
     error ("manova: Y must not be a vector");
   endif
 
   [n, p] = size (Y);
 
-  if (!is_vector (g) || (length (g) != n))
+  if (!isvector (g) || (length (g) != n))
     error ("manova: g must be a vector of length rows (Y)");
   endif