comparison scripts/signal/hurst.m @ 8664:e07e93c04080

style fixes
author John W. Eaton <jwe@octave.org>
date Wed, 04 Feb 2009 10:56:23 -0500
parents aeeb646f6538
children eb63fbe60fab
comparison
equal deleted inserted replaced
8663:4238f2600a17 8664:e07e93c04080
32 if (nargin != 1) 32 if (nargin != 1)
33 print_usage (); 33 print_usage ();
34 endif 34 endif
35 35
36 if (isscalar (x)) 36 if (isscalar (x))
37 error ("hurst: x must not be a scalar") 37 error ("hurst: x must not be a scalar");
38 elseif (isvector (x)) 38 elseif (isvector (x))
39 x = reshape (x, length (x), 1); 39 x = reshape (x, length (x), 1);
40 endif 40 endif
41 41
42 [xr, xc] = size (x); 42 [xr, xc] = size (x);