changeset 8407:096c22ce2b0b

style fixes in previous patch
author Jaroslav Hajek <highegg@gmail.com>
date Mon, 15 Dec 2008 13:49:11 +0100
parents 0b7566aea627
children 15c23c1c3c18
files scripts/optimization/lsqnonneg.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/optimization/lsqnonneg.m
+++ b/scripts/optimization/lsqnonneg.m
@@ -121,8 +121,8 @@
         ## LH10: adjust X.
         x = x + alpha*(xtmp - x);
         ## LH11: move from P to Z all X == 0.
-	z |= (x == 0);
-	p = ~z;
+        z |= (x == 0);
+        p = ~z;
       endif
     endwhile
     w = c'*(d - c*x);