Conrad made some standard cross-products faster, and added
vectorise()
, any()
and all()
functions. We also added an extension header for more
automated conversion of sparse matrices (which is
already used by a post on the Rcpp Gallery).
The complete list of changes is below.
Courtesy of CRANberries, there is also a diffstat report for the most recent release As always, more detailed information is on the RcppArmadillo page. Questions, comments etc should go to the rcpp-devel mailing list off the R-Forge page.Changes in RcppArmadillo version 0.3.910.0 (2013-08-12)
Upgraded to Armadillo release Version 3.910.0 (Pyrenees)
faster multiplication of a matrix with a transpose of itself, ie.
X*X.t()
andX.t()*X
added
vectorise()
for reshaping matrices into vectorsadded
all()
andany()
for indicating presence of elements satisfying a relational conditionAdded conversion support for sparse matrices (of type double) created by the Matrix package as class
dgCMatrix
Moved vignette sources from
inst/doc
tovignettes
; setBuildVignettes: FALSE
as theminted
mode forLaTeX
upsets the CRAN builders.