From 8e9d499b83b92ac9be9b60cb0b199617fa42bda8 Mon Sep 17 00:00:00 2001
From: Tim Behrens <behrens@fmrib.ox.ac.uk>
Date: Wed, 1 Sep 2004 10:41:12 +0000
Subject: [PATCH] *** empty log message ***

---
 miscmaths.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/miscmaths.cc b/miscmaths.cc
index 5aed0ce..e603e96 100644
--- a/miscmaths.cc
+++ b/miscmaths.cc
@@ -1560,7 +1560,7 @@ void element_mod_n(Matrix& Mat,double n)
   for( int j=1;j<=Mat.Ncols();j++){
     for( int i=1;i<=Mat.Nrows();i++){
 
-      if( !( (Mat(i,j)>0) && (Mat(i,j)<n) ) ){ 
+      while( !( (Mat(i,j)>0) && (Mat(i,j)<n) ) ){ 
 	tmp = ( Mat(i,j) - rounddouble(Mat(i,j)/n)*n );
 	Mat(i,j)= tmp > 0 ? tmp : tmp + n;
       }    
-- 
GitLab