Skip to content

Commit f75ff3b

Browse files
authored
Merge pull request #551 from nathan-russell/master
row/col-Sums/Means and unit tests - for #549
2 parents 897da46 + 43ac7c3 commit f75ff3b

File tree

6 files changed

+1557
-0
lines changed

6 files changed

+1557
-0
lines changed

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2016-09-04 Nathan Russell <[email protected]>
2+
3+
* inst/include/Rcpp/sugar/functions/rowSums.h: New functions
4+
rowSums(), colSums(), rowMeans(), and colMeans()
5+
* inst/include/Rcpp/sugar/functions/functions.h: Idem
6+
* inst/unitTests/cpp/sugar.cpp: Unit tests for new functions
7+
* inst/unitTests/runit.sugar.R: Idem
8+
19
2016-09-04 Dirk Eddelbuettel <[email protected]>
210

311
* DESCRIPTION: Release 0.12.7

inst/NEWS.Rd

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}
55

6+
\section{Changes in Rcpp version 0.12.8 (2016-??-??)}{
7+
\itemize{
8+
\item Changes in Rcpp Sugar:
9+
\itemize{
10+
\item Added new Sugar functions \code{rowSums()}, \code{colSums()},
11+
\code{rowMeans()}, \code{colMeans()} (PR \ghpr{551} by Nathan Russell
12+
fixing \ghit{549})
13+
}
14+
}
15+
}
16+
617
\section{Changes in Rcpp version 0.12.7 (2016-09-04)}{
718
\itemize{
819
\item Changes in Rcpp API:

inst/include/Rcpp/sugar/functions/functions.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,7 @@
8484

8585
#include <Rcpp/sugar/functions/cbind.h>
8686

87+
#include <Rcpp/sugar/functions/rowSums.h>
88+
8789
#endif
8890

0 commit comments

Comments
 (0)