1
1
## RcppEigen: Rcpp Integration for the Eigen Templated Linear Algebra Library
2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/RcppCore/RcppEigen.svg )] ( https://travis-ci.org/RcppCore/RcppEigen )
4
- [ ![ License] ( http ://img.shields.io/badge/license-GPL%20%28%3E=%202%29-brightgreen.svg?style=flat)] ( http ://www.gnu.org/licenses/gpl-2.0.html)
5
- [ ![ License] ( http ://img.shields.io/badge/license-MPL2-brightgreen.svg?style=flat)] ( http ://www.mozilla.org/MPL/2.0/)
6
- [ ![ CRAN] ( http ://www.r-pkg.org/badges/version/RcppEigen)] ( https://cran.r-project.org/package=RcppEigen )
4
+ [ ![ License] ( https ://img.shields.io/badge/license-GPL%20%28%3E=%202%29-brightgreen.svg?style=flat)] ( https ://www.gnu.org/licenses/gpl-2.0.html)
5
+ [ ![ License] ( https ://img.shields.io/badge/license-MPL2-brightgreen.svg?style=flat)] ( https ://www.mozilla.org/MPL/2.0/)
6
+ [ ![ CRAN] ( https ://www.r-pkg.org/badges/version/RcppEigen)] ( https://cran.r-project.org/package=RcppEigen )
7
7
[ ![ Dependencies] ( https://tinyverse.netlify.com/badge/RcppEigen )] ( https://cran.r-project.org/package=RcppEigen )
8
8
[ ![ Debian package] ( https://img.shields.io/debian/v/r-cran-rcppeigen/sid?color=brightgreen )] ( https://packages.debian.org/sid/r-cran-rcppeigen )
9
9
[ ![ Last Commit] ( https://img.shields.io/github/last-commit/RcppCore/RcppEigen )] ( https://github.com/RcppCore/RcppEigen )
10
- [ ![ Downloads] ( http ://cranlogs.r-pkg.org/badges/RcppEigen?color=brightgreen)] ( http ://www.r-pkg.org/pkg/RcppEigen)
10
+ [ ![ Downloads] ( https ://cranlogs.r-pkg.org/badges/RcppEigen?color=brightgreen)] ( https ://www.r-pkg.org:443 /pkg/RcppEigen)
11
11
[ ![ CRAN use] ( https://jangorecki.gitlab.io/rdeps/RcppEigen/CRAN_usage.svg?sanitize=true )] ( https://cran.r-project.org/package=RcppEigen )
12
12
[ ![ BioConductor use] ( https://jangorecki.gitlab.io/rdeps/RcppEigen/BioC_usage.svg?sanitize=true )] ( https://cran.r-project.org/package=RcppEigen )
13
13
[ ![ StackOverflow] ( https://img.shields.io/badge/stackoverflow-rcpp-orange.svg )] ( https://stackoverflow.com/questions/tagged/rcpp )
16
16
17
17
### Synopsis
18
18
19
- [ Eigen] ( http://eigen.tuxfamily.org ) is a C++ template library for linear algebra:
19
+ [ Eigen] ( http://eigen.tuxfamily.org/index.php?title=Main_Page ) is a C++ template library for linear algebra:
20
20
matrices, vectors, numerical solvers and related algorithms. It supports dense and sparse
21
21
matrices on integer, floating point and complex numbers, decompositions of such matrices,
22
22
and solutions of linear systems. Its performance on many algorithms is comparable with
23
23
some of the best implementations based on ` Lapack ` and level-3 ` BLAS ` .
24
24
25
- RcppEigen provides an interface from R to and from [ Eigen] ( http://eigen.tuxfamily.org ) by
25
+ RcppEigen provides an interface from R to and from [ Eigen] ( http://eigen.tuxfamily.org/index.php?title=Main_Page ) by
26
26
using the facilities offered by the [ Rcpp] ( http://dirk.eddelbuettel.com/code/rcpp.html )
27
27
package for seamless R and C++ integration.
28
28
29
29
### Examples
30
30
31
- A few examples are over at the [ Rcpp Gallery] ( http ://gallery.rcpp.org/tags/eigen/) . A simple one is
31
+ A few examples are over at the [ Rcpp Gallery] ( https ://gallery.rcpp.org/tags/eigen/) . A simple one is
32
32
33
33
``` c++
34
34
#include < RcppEigen.h>
@@ -55,13 +55,13 @@ sourceCpp("eigenExample.cpp")
55
55
56
56
due to the two Rcpp directives to use headers from the RcppEigen package, and to export
57
57
the `getEigenValues()` function -- but read [the full
58
- post](http ://gallery.rcpp.org/articles/eigen-eigenvalues/) for details.
58
+ post](https ://gallery.rcpp.org/articles/eigen-eigenvalues/) for details.
59
59
60
60
61
61
### Status
62
62
63
63
The package is mature and under active development, following the
64
- [Eigen](http://eigen.tuxfamily.org) release cycle.
64
+ [Eigen](http://eigen.tuxfamily.org/index.php?title=Main_Page ) release cycle.
65
65
66
66
### Documentation
67
67
0 commit comments