]> henry.ined.fr Git - .git/commitdiff
Summary: There was some wrong lines added
authorN. Brouard <brouard@ined.fr>
Thu, 16 May 2019 14:54:33 +0000 (14:54 +0000)
committerN. Brouard <brouard@ined.fr>
Thu, 16 May 2019 14:54:33 +0000 (14:54 +0000)
src/imach.c

index 98bf57809dcba856ca5bbdc9d4be93bf486fcd14..aa18cb1ebce7707fda23b476178c3692ea5869ec 100644 (file)
@@ -1,6 +1,9 @@
 /* $Id$
   $State$
   $Log$
+  Revision 1.293  2019/05/09 15:17:34  brouard
+  *** empty log message ***
+
   Revision 1.292  2019/05/09 14:17:20  brouard
   Summary: Some updates
 
@@ -2966,24 +2969,8 @@ double **pmij(double **ps, double *cov, int ncovmodel, double *x, int nlstate )
       ps[ii][ii]=1;
     }
   }
-  /* Added for backcast */ /* Transposed matrix too */
-  for(jj=1; jj<= nlstate+ndeath; jj++){
-    s1=0.;
-    for(ii=1; ii<= nlstate+ndeath; ii++){
-      s1+=ps[ii][jj];
-    }
-    for(ii=1; ii<= nlstate; ii++){
-      ps[ii][jj]=ps[ii][jj]/s1;
-    }
-  }
-  /* Transposition */
-  for(jj=1; jj<= nlstate+ndeath; jj++){
-    for(ii=jj; ii<= nlstate+ndeath; ii++){
-      s1=ps[ii][jj];
-      ps[ii][jj]=ps[jj][ii];
-      ps[jj][ii]=s1;
-    }
-  }
+
+
   /* for(ii=1; ii<= nlstate+ndeath; ii++){ */
   /*   for(jj=1; jj<= nlstate+ndeath; jj++){ */
   /*   printf(" pmij  ps[%d][%d]=%lf ",ii,jj,ps[ii][jj]); */