diff scripts/statistics/distributions/lognrnd.m @ 10549:95c3e38098bf

Untabify .m scripts
author Rik <code@nomad.inbox5.com>
date Fri, 23 Apr 2010 11:28:50 -0700
parents 3306cfcb856e
children be55736a0783
line wrap: on
line diff
--- a/scripts/statistics/distributions/lognrnd.m	Fri Apr 23 11:13:48 2010 -0700
+++ b/scripts/statistics/distributions/lognrnd.m	Fri Apr 23 11:28:50 2010 -0700
@@ -37,7 +37,7 @@
     if (!isscalar(mu) || !isscalar(sigma)) 
       [retval, mu, sigma] = common_size (mu, sigma);
       if (retval > 0)
-	error ("lognrnd: mu and sigma must be of common size or scalar");
+        error ("lognrnd: mu and sigma must be of common size or scalar");
       endif
     endif
   endif
@@ -52,7 +52,7 @@
     sz = [r, c];
 
     if (any (size (mu) != 1) && 
-	((length (size (mu)) != length (sz)) || any (size (mu) != sz)))
+        ((length (size (mu)) != length (sz)) || any (size (mu) != sz)))
       error ("lognrnd: mu and sigma must be scalar or of size [r, c]");
     endif
 
@@ -66,7 +66,7 @@
     endif
 
     if (any (size (mu) != 1) && 
-	((length (size (mu)) != length (sz)) || any (size (mu) != sz)))
+        ((length (size (mu)) != length (sz)) || any (size (mu) != sz)))
       error ("lognrnd: mu and sigma must be scalar or of size sz");
     endif
   elseif (nargin == 2)