diff scripts/signal/hurst.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/signal/hurst.m
+++ b/scripts/signal/hurst.m
@@ -33,9 +33,9 @@
     usage ("hurst (x)");
   endif
 
-  if (is_scalar (x))
+  if (isscalar (x))
     error ("hurst: x must not be a scalar")
-  elseif (is_vector (x))
+  elseif (isvector (x))
     x = reshape (x, length (x), 1);
   end