├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── RcppExports.R ├── add_subtract.R ├── bigmemory.R ├── boost_funcs.R ├── cgls.R ├── geninv.R ├── knit_jekyll.R ├── lanczos.R ├── lsmr.R ├── parallel.R ├── products.R ├── simulate_sparse.R ├── solvers.R ├── stargazer_lme4.R ├── testing.R └── utils.R ├── README.md ├── Rpackages ├── man ├── add-methods.Rd ├── add.Rd ├── boost.pnorm.Rd ├── cgls.Rd ├── crossprodChunk.Rd ├── crossprodcpp.Rd ├── geninv.Rd ├── gklBidiag.Rd ├── lsmr.Rd ├── multivarNorm.Rd ├── rfunction-package.Rd ├── runParallel.Rd ├── simSparseMatrix.Rd ├── sliced.crossprod.Rd ├── solveCG.Rd ├── stargazer_lme4.Rd ├── subtract-methods.Rd └── subtract.Rd └── src ├── Makevars ├── Makevars.win ├── MatOp.h ├── RcppExports.cpp ├── Spectra ├── GenEigsSolver.h ├── LinAlg │ ├── DoubleShiftQR.h │ ├── TridiagEigen.h │ ├── UpperHessenbergEigen.h │ └── UpperHessenbergQR.h ├── MatOp │ ├── DenseGenComplexShiftSolve.h │ ├── DenseGenMatProd.h │ ├── DenseGenRealShiftSolve.h │ ├── DenseSymShiftSolve.h │ └── SparseGenMatProd.h ├── SelectionRule.h └── SymEigsSolver.h ├── bigmemory.cpp ├── bigmemory.h ├── cgls.cpp ├── cgls.h ├── geninv.cpp ├── geninv.h ├── gls.cpp ├── gls.h ├── igl ├── colon.cpp ├── colon.h ├── igl_inline.h ├── slice.cpp ├── slice.h ├── slice_into.cpp ├── slice_into.h ├── slice_mask.cpp ├── slice_mask.h ├── slice_tets.cpp └── slice_tets.h ├── lanczos.cpp ├── lanczos.h ├── linop.cpp ├── linop.h ├── lsmr.cpp ├── lsmr.h ├── multivar_norm.cpp ├── multivar_norm.h ├── pnorm.cpp ├── pnorm.h ├── testing.cpp ├── testing.h ├── utils.cpp └── utils.h /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/add_subtract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/add_subtract.R -------------------------------------------------------------------------------- /R/bigmemory.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/bigmemory.R -------------------------------------------------------------------------------- /R/boost_funcs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/boost_funcs.R -------------------------------------------------------------------------------- /R/cgls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/cgls.R -------------------------------------------------------------------------------- /R/geninv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/geninv.R -------------------------------------------------------------------------------- /R/knit_jekyll.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/knit_jekyll.R -------------------------------------------------------------------------------- /R/lanczos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/lanczos.R -------------------------------------------------------------------------------- /R/lsmr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/lsmr.R -------------------------------------------------------------------------------- /R/parallel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/parallel.R -------------------------------------------------------------------------------- /R/products.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/products.R -------------------------------------------------------------------------------- /R/simulate_sparse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/simulate_sparse.R -------------------------------------------------------------------------------- /R/solvers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/solvers.R -------------------------------------------------------------------------------- /R/stargazer_lme4.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/stargazer_lme4.R -------------------------------------------------------------------------------- /R/testing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/testing.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/README.md -------------------------------------------------------------------------------- /Rpackages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/Rpackages -------------------------------------------------------------------------------- /man/add-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/add-methods.Rd -------------------------------------------------------------------------------- /man/add.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/add.Rd -------------------------------------------------------------------------------- /man/boost.pnorm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/boost.pnorm.Rd -------------------------------------------------------------------------------- /man/cgls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/cgls.Rd -------------------------------------------------------------------------------- /man/crossprodChunk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/crossprodChunk.Rd -------------------------------------------------------------------------------- /man/crossprodcpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/crossprodcpp.Rd -------------------------------------------------------------------------------- /man/geninv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/geninv.Rd -------------------------------------------------------------------------------- /man/gklBidiag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/gklBidiag.Rd -------------------------------------------------------------------------------- /man/lsmr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/lsmr.Rd -------------------------------------------------------------------------------- /man/multivarNorm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/multivarNorm.Rd -------------------------------------------------------------------------------- /man/rfunction-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/rfunction-package.Rd -------------------------------------------------------------------------------- /man/runParallel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/runParallel.Rd -------------------------------------------------------------------------------- /man/simSparseMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/simSparseMatrix.Rd -------------------------------------------------------------------------------- /man/sliced.crossprod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/sliced.crossprod.Rd -------------------------------------------------------------------------------- /man/solveCG.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/solveCG.Rd -------------------------------------------------------------------------------- /man/stargazer_lme4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/stargazer_lme4.Rd -------------------------------------------------------------------------------- /man/subtract-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/subtract-methods.Rd -------------------------------------------------------------------------------- /man/subtract.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/man/subtract.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/MatOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/MatOp.h -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/Spectra/GenEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/GenEigsSolver.h -------------------------------------------------------------------------------- /src/Spectra/LinAlg/DoubleShiftQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/LinAlg/DoubleShiftQR.h -------------------------------------------------------------------------------- /src/Spectra/LinAlg/TridiagEigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/LinAlg/TridiagEigen.h -------------------------------------------------------------------------------- /src/Spectra/LinAlg/UpperHessenbergEigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/LinAlg/UpperHessenbergEigen.h -------------------------------------------------------------------------------- /src/Spectra/LinAlg/UpperHessenbergQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/LinAlg/UpperHessenbergQR.h -------------------------------------------------------------------------------- /src/Spectra/MatOp/DenseGenComplexShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/MatOp/DenseGenComplexShiftSolve.h -------------------------------------------------------------------------------- /src/Spectra/MatOp/DenseGenMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/MatOp/DenseGenMatProd.h -------------------------------------------------------------------------------- /src/Spectra/MatOp/DenseGenRealShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/MatOp/DenseGenRealShiftSolve.h -------------------------------------------------------------------------------- /src/Spectra/MatOp/DenseSymShiftSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/MatOp/DenseSymShiftSolve.h -------------------------------------------------------------------------------- /src/Spectra/MatOp/SparseGenMatProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/MatOp/SparseGenMatProd.h -------------------------------------------------------------------------------- /src/Spectra/SelectionRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/SelectionRule.h -------------------------------------------------------------------------------- /src/Spectra/SymEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/Spectra/SymEigsSolver.h -------------------------------------------------------------------------------- /src/bigmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/bigmemory.cpp -------------------------------------------------------------------------------- /src/bigmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/bigmemory.h -------------------------------------------------------------------------------- /src/cgls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/cgls.cpp -------------------------------------------------------------------------------- /src/cgls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/cgls.h -------------------------------------------------------------------------------- /src/geninv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/geninv.cpp -------------------------------------------------------------------------------- /src/geninv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/geninv.h -------------------------------------------------------------------------------- /src/gls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/gls.cpp -------------------------------------------------------------------------------- /src/gls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/gls.h -------------------------------------------------------------------------------- /src/igl/colon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/colon.cpp -------------------------------------------------------------------------------- /src/igl/colon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/colon.h -------------------------------------------------------------------------------- /src/igl/igl_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/igl_inline.h -------------------------------------------------------------------------------- /src/igl/slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/slice.cpp -------------------------------------------------------------------------------- /src/igl/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/slice.h -------------------------------------------------------------------------------- /src/igl/slice_into.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/slice_into.cpp -------------------------------------------------------------------------------- /src/igl/slice_into.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/slice_into.h -------------------------------------------------------------------------------- /src/igl/slice_mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/slice_mask.cpp -------------------------------------------------------------------------------- /src/igl/slice_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/slice_mask.h -------------------------------------------------------------------------------- /src/igl/slice_tets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/slice_tets.cpp -------------------------------------------------------------------------------- /src/igl/slice_tets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/igl/slice_tets.h -------------------------------------------------------------------------------- /src/lanczos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/lanczos.cpp -------------------------------------------------------------------------------- /src/lanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/lanczos.h -------------------------------------------------------------------------------- /src/linop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/linop.cpp -------------------------------------------------------------------------------- /src/linop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/linop.h -------------------------------------------------------------------------------- /src/lsmr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/lsmr.cpp -------------------------------------------------------------------------------- /src/lsmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/lsmr.h -------------------------------------------------------------------------------- /src/multivar_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/multivar_norm.cpp -------------------------------------------------------------------------------- /src/multivar_norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/multivar_norm.h -------------------------------------------------------------------------------- /src/pnorm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/pnorm.cpp -------------------------------------------------------------------------------- /src/pnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/pnorm.h -------------------------------------------------------------------------------- /src/testing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/testing.cpp -------------------------------------------------------------------------------- /src/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/testing.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredhuling/rfunctions/HEAD/src/utils.h --------------------------------------------------------------------------------