Skip to content

Commit c3891e5

Browse files
committed
update vignette to use RcppEigen:::eigen_version (closes #71)
1 parent 4257515 commit c3891e5

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-05-24 Dirk Eddelbuettel <[email protected]>
2+
3+
* vignettes/RcppEigen-Introduction.Rnw: Update vignette to use
4+
RcppEigen:::eigen_version() instead of .Call()
5+
16
2019-03-29 Dirk Eddelbuettel <[email protected]>
27

38
* inst/skeleton/rcppeigen_hello_world.cpp: Rework first example to

inst/NEWS.Rd

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
\itemize{
88
\item Fixed skeleton package creation listing RcppEigen under Imports
99
(James Balamuta in \ghpr{68} addressing \ghit{16}).
10+
\item Small RNG use update to first example in skeleton package used
11+
by package creation helper.
12+
\item Update vignette example to use RcppEigen:::eigen_version().
1013
}
1114
}
1215

vignettes/RcppEigen-Introduction.Rnw

+3-3
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ matrices to represent projections in a visualization application. \pkg{Eigen}
132132
grew from there and has over the course of about a decade produced three
133133
major releases with \pkg{Eigen}3 being the current major version. To
134134
check the minor and patch version numbers, load the \pkg{RcppEigen}
135-
package and call
135+
package and call this (internal) helper function:
136136
\begin{CodeInput}
137-
R> .Call("eigen_version", FALSE)
137+
R> RcppEigen:::eigen_version(FALSE)
138138
\end{CodeInput}
139139
\begin{CodeOutput}
140140
major minor patch
141-
3 1 1
141+
3 3 5
142142
\end{CodeOutput}
143143
\pkg{Eigen} is of interest as the \proglang{R} system for statistical
144144
computation and graphics \citep{R:Main} is itself easily extensible. This is

0 commit comments

Comments
 (0)