[Yuima-commits] r163 - in pkg/yuima: . R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sat Jul 30 16:47:22 CEST 2011


Author: kamatani
Date: 2011-07-30 16:47:21 +0200 (Sat, 30 Jul 2011)
New Revision: 163

Modified:
   pkg/yuima/DESCRIPTION
   pkg/yuima/R/llag.R
Log:
Fix covariance bug

Modified: pkg/yuima/DESCRIPTION
===================================================================
--- pkg/yuima/DESCRIPTION	2011-07-29 01:56:29 UTC (rev 162)
+++ pkg/yuima/DESCRIPTION	2011-07-30 14:47:21 UTC (rev 163)
@@ -1,8 +1,8 @@
 Package: yuima
 Type: Package
 Title: The YUIMA Project package (unstable version)
-Version: 0.1.1922
-Date: 2011-07-29
+Version: 0.1.1923
+Date: 2011-07-30
 Depends: methods, zoo, stats4, utils
 Suggests: cubature, mvtnorm
 Author: YUIMA Project Team.

Modified: pkg/yuima/R/llag.R
===================================================================
--- pkg/yuima/R/llag.R	2011-07-29 01:56:29 UTC (rev 162)
+++ pkg/yuima/R/llag.R	2011-07-30 14:47:21 UTC (rev 163)
@@ -78,7 +78,7 @@
 			theta[i,j] <- fl$lag
 			covmat[i,j] <- fl$cov
 			theta[j,i] <- -theta[i,j]
-			covmat[j,i] <- -covmat[i,j]
+			covmat[j,i] <- covmat[i,j]
 		}
 	}
 	


More information about the Yuima-commits mailing list