diff scripts/linear-algebra/onenormest.m @ 10549:95c3e38098bf

Untabify .m scripts
author Rik <code@nomad.inbox5.com>
date Fri, 23 Apr 2010 11:28:50 -0700
parents 1bf0ce0930be
children 3140cb7a05a1
line wrap: on
line diff
--- a/scripts/linear-algebra/onenormest.m	Fri Apr 23 11:13:48 2010 -0700
+++ b/scripts/linear-algebra/onenormest.m	Fri Apr 23 11:28:50 2010 -0700
@@ -210,14 +210,14 @@
     if (t > 1)
       firstind = ind(1:t);
       if (all (been_there(firstind)))
-	## Visited all these before, so stop.
-	break;
+        ## Visited all these before, so stop.
+        break;
       endif
       ind = ind (!been_there (ind));
       if (length (ind) < t)
-	## There aren't enough new vectors, so we're practically
-	## in a cycle. Stop.
-	break;
+        ## There aren't enough new vectors, so we're practically
+        ## in a cycle. Stop.
+        break;
       endif
     endif