11## RcppEigen: Rcpp Integration for the Eigen Templated Linear Algebra Library  
22
33[ ![ 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 ) 
77[ ![ Dependencies] ( https://tinyverse.netlify.com/badge/RcppEigen )] ( https://cran.r-project.org/package=RcppEigen ) 
88[ ![ Debian package] ( https://img.shields.io/debian/v/r-cran-rcppeigen/sid?color=brightgreen )] ( https://packages.debian.org/sid/r-cran-rcppeigen ) 
99[ ![ 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) 
1111[ ![ CRAN use] ( https://jangorecki.gitlab.io/rdeps/RcppEigen/CRAN_usage.svg?sanitize=true )] ( https://cran.r-project.org/package=RcppEigen ) 
1212[ ![ BioConductor use] ( https://jangorecki.gitlab.io/rdeps/RcppEigen/BioC_usage.svg?sanitize=true )] ( https://cran.r-project.org/package=RcppEigen ) 
1313[ ![ StackOverflow] ( https://img.shields.io/badge/stackoverflow-rcpp-orange.svg )] ( https://stackoverflow.com/questions/tagged/rcpp ) 
1616
1717### Synopsis  
1818
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:
2020matrices, vectors, numerical solvers and related algorithms.  It supports dense and sparse
2121matrices on integer, floating point and complex numbers, decompositions of such matrices,
2222and solutions of linear systems. Its performance on many algorithms is comparable with
2323some of the best implementations based on ` Lapack `  and level-3 ` BLAS ` .
2424
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
2626using the facilities offered by the [ Rcpp] ( http://dirk.eddelbuettel.com/code/rcpp.html ) 
2727package for seamless R and C++ integration.
2828
2929### Examples  
3030
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
3232
3333``` c++ 
3434#include  < RcppEigen.h> 
@@ -55,13 +55,13 @@ sourceCpp("eigenExample.cpp")
5555
5656due to the two Rcpp directives to use headers from the RcppEigen package, and to export 
5757the `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. 
5959
6060
6161### Status 
6262
6363The 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. 
6565
6666### Documentation 
6767
0 commit comments