[Rcpp-commits] r3569 - in pkg/RcppArmadillo: . inst inst/include/armadillo_bits

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Apr 10 21:29:48 CEST 2012


Author: edd
Date: 2012-04-10 21:29:48 +0200 (Tue, 10 Apr 2012)
New Revision: 3569

Modified:
   pkg/RcppArmadillo/ChangeLog
   pkg/RcppArmadillo/DESCRIPTION
   pkg/RcppArmadillo/inst/NEWS
   pkg/RcppArmadillo/inst/include/armadillo_bits/arma_version.hpp
Log:
Armadillo 3.0.0 wrapped as new release RcppArmadillo 0.3.0


Modified: pkg/RcppArmadillo/ChangeLog
===================================================================
--- pkg/RcppArmadillo/ChangeLog	2012-04-08 20:14:35 UTC (rev 3568)
+++ pkg/RcppArmadillo/ChangeLog	2012-04-10 19:29:48 UTC (rev 3569)
@@ -1,3 +1,9 @@
+2012-04-10  Dirk Eddelbuettel  <edd at debian.org>
+
+	* DESCRIPTION: Release 0.3.0
+
+	* inst/include/*: Upgraded to new release 3.0.0 of Armadillo
+
 2012-04-04  Dirk Eddelbuettel  <edd at debian.org>
 
 	* DESCRIPTION: Release 0.2.40

Modified: pkg/RcppArmadillo/DESCRIPTION
===================================================================
--- pkg/RcppArmadillo/DESCRIPTION	2012-04-08 20:14:35 UTC (rev 3568)
+++ pkg/RcppArmadillo/DESCRIPTION	2012-04-10 19:29:48 UTC (rev 3569)
@@ -1,7 +1,7 @@
 Package: RcppArmadillo
 Type: Package
 Title: Rcpp integration for Armadillo templated linear algebra library
-Version: 0.2.40
+Version: 0.2.41
 Date: $Date$
 Author: Romain Francois, Dirk Eddelbuettel and Doug Bates
 Maintainer: Romain Francois, Dirk Eddelbuettel and Doug Bates <RcppArmadillo-authors at r-enthusiasts.com>
@@ -21,7 +21,7 @@
  (due to speed and/or integration capabilities), rather than another language.
  .
  The RcppArmadillo package includes the header files from the templated
- Armadillo library (currently version 2.99.4). Thus users do not need to
+ Armadillo library (currently version 3.0.0). Thus users do not need to
  install Armadillo itself in order to use RcppArmadillo.
  .
  This Armadillo integration provides a nice illustration of the 

Modified: pkg/RcppArmadillo/inst/NEWS
===================================================================
--- pkg/RcppArmadillo/inst/NEWS	2012-04-08 20:14:35 UTC (rev 3568)
+++ pkg/RcppArmadillo/inst/NEWS	2012-04-10 19:29:48 UTC (rev 3569)
@@ -1,3 +1,19 @@
+0.3.0   2012-04-10
+
+    o   Upgraded to Armadillo release 3.0.0 "Antarctic Chilli Ranch"
+
+    	  * added non-contiguous submatrix views
+    	  * added shorthand for inverse: .i()
+    	  * added hist() and histc()
+    	  * faster repmat()
+    	  * faster handling of submatrix views with one row or column 
+    	  * faster generation of random numbers
+    	  * faster element access in fixed size matrices
+    	  * better detection of vector expressions by sum(), cumsum(),
+    	    prod(), min(), max(), mean(), median(), stddev(), var() 
+    	  * expressions X=A.i()*B and X=inv(A)*B are automatically converted
+    	    to X=solve(A,B) 
+
 0.2.40  2012-04-04
 
     o   Upgraded to Armadillo release 2.99.4 "Antarctic Chilli Ranch (Beta 4)"

Modified: pkg/RcppArmadillo/inst/include/armadillo_bits/arma_version.hpp
===================================================================
--- pkg/RcppArmadillo/inst/include/armadillo_bits/arma_version.hpp	2012-04-08 20:14:35 UTC (rev 3568)
+++ pkg/RcppArmadillo/inst/include/armadillo_bits/arma_version.hpp	2012-04-10 19:29:48 UTC (rev 3569)
@@ -16,10 +16,10 @@
 
 
 
-#define ARMA_VERSION_MAJOR 2
-#define ARMA_VERSION_MINOR 99
-#define ARMA_VERSION_PATCH 4
-#define ARMA_VERSION_NAME  "Antarctic Chilli Ranch (Beta 4)"
+#define ARMA_VERSION_MAJOR 3
+#define ARMA_VERSION_MINOR 0
+#define ARMA_VERSION_PATCH 0
+#define ARMA_VERSION_NAME  "Antarctic Chilli Ranch"
 
 
 



More information about the Rcpp-commits mailing list