├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R └── r2arma_package.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── inst └── include │ ├── distributions.h │ ├── manipulations.h │ ├── r2arma.h │ ├── seq.h │ └── ts.h ├── man ├── ARMAacf_cpp.Rd ├── ARMAtoMA_cpp.Rd ├── cfilter.Rd ├── dft_acf.Rd ├── diff_cpp.Rd ├── field_to_matrix.Rd ├── get_elements.Rd ├── r2arma-package.Rd ├── rev_col_subset.Rd ├── rev_row_subset.Rd ├── reverse_vec.Rd ├── rfilter.Rd ├── riwishart.Rd ├── rwishart.Rd ├── seq_along_cpp.Rd ├── seq_default.Rd ├── seq_default_a.Rd ├── seq_int.Rd ├── seq_len_cpp.Rd └── sum_field_vec.Rd ├── r2arma.Rproj ├── src ├── .gitignore ├── Makevars ├── Makevars.win ├── RcppExports.cpp ├── distributions.cpp ├── manipulations.cpp ├── seq.cpp └── ts.cpp └── tests ├── testthat.R └── testthat ├── test-manipulations.R └── test-seq.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: James Balamuta 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/r2arma_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/R/r2arma_package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /inst/include/distributions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/inst/include/distributions.h -------------------------------------------------------------------------------- /inst/include/manipulations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/inst/include/manipulations.h -------------------------------------------------------------------------------- /inst/include/r2arma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/inst/include/r2arma.h -------------------------------------------------------------------------------- /inst/include/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/inst/include/seq.h -------------------------------------------------------------------------------- /inst/include/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/inst/include/ts.h -------------------------------------------------------------------------------- /man/ARMAacf_cpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/ARMAacf_cpp.Rd -------------------------------------------------------------------------------- /man/ARMAtoMA_cpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/ARMAtoMA_cpp.Rd -------------------------------------------------------------------------------- /man/cfilter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/cfilter.Rd -------------------------------------------------------------------------------- /man/dft_acf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/dft_acf.Rd -------------------------------------------------------------------------------- /man/diff_cpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/diff_cpp.Rd -------------------------------------------------------------------------------- /man/field_to_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/field_to_matrix.Rd -------------------------------------------------------------------------------- /man/get_elements.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/get_elements.Rd -------------------------------------------------------------------------------- /man/r2arma-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/r2arma-package.Rd -------------------------------------------------------------------------------- /man/rev_col_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/rev_col_subset.Rd -------------------------------------------------------------------------------- /man/rev_row_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/rev_row_subset.Rd -------------------------------------------------------------------------------- /man/reverse_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/reverse_vec.Rd -------------------------------------------------------------------------------- /man/rfilter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/rfilter.Rd -------------------------------------------------------------------------------- /man/riwishart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/riwishart.Rd -------------------------------------------------------------------------------- /man/rwishart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/rwishart.Rd -------------------------------------------------------------------------------- /man/seq_along_cpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/seq_along_cpp.Rd -------------------------------------------------------------------------------- /man/seq_default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/seq_default.Rd -------------------------------------------------------------------------------- /man/seq_default_a.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/seq_default_a.Rd -------------------------------------------------------------------------------- /man/seq_int.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/seq_int.Rd -------------------------------------------------------------------------------- /man/seq_len_cpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/seq_len_cpp.Rd -------------------------------------------------------------------------------- /man/sum_field_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/man/sum_field_vec.Rd -------------------------------------------------------------------------------- /r2arma.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/r2arma.Rproj -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/distributions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/src/distributions.cpp -------------------------------------------------------------------------------- /src/manipulations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/src/manipulations.cpp -------------------------------------------------------------------------------- /src/seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/src/seq.cpp -------------------------------------------------------------------------------- /src/ts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/src/ts.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-manipulations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/tests/testthat/test-manipulations.R -------------------------------------------------------------------------------- /tests/testthat/test-seq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/r-to-armadillo/HEAD/tests/testthat/test-seq.R --------------------------------------------------------------------------------