├── .Rbuildignore ├── .build-steps.R ├── .gitattributes ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── Eigen.R ├── Eqn.R ├── Eqn_helpers.R ├── GramSchmidt.R ├── J.R ├── LU.R ├── MoorePenrose.R ├── QR.R ├── R.R ├── Solve.R ├── angle.R ├── arrows3d.R ├── circle.R ├── corner.R ├── determinants.R ├── gaussian-elimination.R ├── gsorth.R ├── is_square.R ├── latexMatrix.R ├── latexMatrixOperations.R ├── len.R ├── matlib-package.R ├── matrix2latex.R ├── mpower.R ├── plotEqn.R ├── powerMethod.R ├── printMatEqn.R ├── proj.R ├── regvec3d.R ├── rowops.R ├── showEig.R ├── showEqn.R ├── svdDemo.R ├── swp.R ├── symMat.R ├── tr.R ├── util.R ├── vandermode.R ├── vec.R ├── vectors.R ├── vectors3d.R └── xprod.R ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data ├── class.RData ├── coffee.RData ├── therapy.RData └── workers.RData ├── dev ├── 3D-graph-3.png ├── 3d-demo.R ├── 3d-demo0.Rmd ├── 3d-inv-demo │ ├── inv-demo.gif │ └── inv-demo1.png ├── Arith.R ├── Arith2.R ├── Eqn-testqmd.pdf ├── Eqn-testqmd.qmd ├── Eqn_helpers0.R ├── Eqn_test.Rmd ├── Eqn_test.html ├── Eqn_test.pdf ├── Eqn_test_files │ └── libs │ │ ├── bootstrap │ │ ├── bootstrap-icons.css │ │ ├── bootstrap-icons.woff │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ └── quarto-html │ │ ├── anchor.min.js │ │ ├── popper.min.js │ │ ├── quarto-syntax-highlighting.css │ │ ├── quarto.js │ │ ├── tippy.css │ │ └── tippy.umd.min.js ├── Eqn_test_quarto.html ├── Eqn_test_quarto.knit.md ├── Eqn_test_quarto.qmd ├── Eqn_test_quarto_files │ └── libs │ │ ├── bootstrap │ │ ├── bootstrap-icons.css │ │ ├── bootstrap-icons.woff │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ └── quarto-html │ │ ├── anchor.min.js │ │ ├── popper.min.js │ │ ├── quarto-syntax-highlighting.css │ │ ├── quarto.js │ │ ├── tippy.css │ │ └── tippy.umd.min.js ├── Prepare_for_CRAN.R ├── SSP-decomp.png ├── SVD-demo.Rmd ├── addPartitions.R ├── angle.R ├── ann.md ├── as_latex.Rmd ├── as_latex.html ├── as_latex.md ├── bordermatrix.Rmd ├── bordermatrix.html ├── bracket.R ├── contrasts-test.R ├── dogfood.RData ├── dot-test.R ├── dot-test2.R ├── dot.R ├── dot0.R ├── eigen-ex.R ├── hat-matrix-underbrace.png ├── kronecker.R ├── latexMatrix-examples-tests.R ├── latexMatrix-examples-tests.Rmd ├── latexMatrixOperations-MF-edits.R ├── latexMatrixOperations.R ├── operations-with-names.R ├── over_under-test.R ├── over_under.R ├── overset.R ├── partition.R ├── pkgdown-issue.txt ├── plotEqn-test.R ├── plotEqn.R ├── print.latexMatrix.R ├── printEqn.R ├── renderMatrix-notes.Rmd ├── renderMatrix-notes.html ├── row-col-names-test2.R ├── row-col-names-tests.R ├── showEqn-test.R ├── simplify.R ├── symbolicMatrix.R ├── symbolicMatrix2.R ├── test-eqn-vignette.Rmd ├── test-eqn-vignette.html ├── test-symbolic-matrix.R ├── test-vectors3d.R ├── test.Rmd ├── test.pdf └── vectors3d.R ├── docs ├── 404.html ├── announce.html ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── 3d-demo.html │ ├── 3d-demo_files │ │ ├── CanvasMatrix4-1.3.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── htmlwidgets-1.6.4 │ │ │ └── htmlwidgets.js │ │ ├── rglWebGL-binding-1.3.1 │ │ │ └── rglWebGL.js │ │ └── rglwidgetClass-1.3.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ ├── CanvasMatrix.js │ ├── a1-det-ex1.html │ ├── a1-det-ex1_files │ │ └── figure-html │ │ │ ├── det-diagram1-1.png │ │ │ ├── det-diagram2-1.png │ │ │ └── det-diagram3-1.png │ ├── a2-det-ex2.html │ ├── a3-inv-ex1.html │ ├── a3-inv-ex1_files │ │ └── figure-html │ │ │ ├── plot-inv1-1.png │ │ │ ├── plot-inv2-1.png │ │ │ └── plot-inv3-1.png │ ├── a4-inv-ex2.html │ ├── a5-ginv.html │ ├── a6-inv-3d.html │ ├── a6-inv-3d_files │ │ ├── CanvasMatrix4-1.3.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.3.14 │ │ │ └── CanvasMatrix.src.js │ │ ├── htmlwidgets-1.6.4 │ │ │ └── htmlwidgets.js │ │ ├── rglWebGL-binding-1.3.1 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.3.14 │ │ │ └── rglWebGL.js │ │ ├── rglwidgetClass-1.3.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ └── rglwidgetClass-1.3.14 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ ├── a7-eigen-ex1.html │ ├── a8-eigen-ex2.html │ ├── a9-linear-equations.html │ ├── a9-linear-equations_files │ │ ├── CanvasMatrix4-1.3.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.3.14 │ │ │ └── CanvasMatrix.src.js │ │ ├── figure-html │ │ │ ├── plotEqn1-1.png │ │ │ ├── plotEqn2-1.png │ │ │ └── plotEqn4-1.png │ │ ├── htmlwidgets-1.6.4 │ │ │ └── htmlwidgets.js │ │ ├── rglWebGL-binding-1.3.1 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.3.14 │ │ │ └── rglWebGL.js │ │ ├── rglwidgetClass-1.3.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ └── rglwidgetClass-1.3.14 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ ├── aA-gramreg.html │ ├── aB-data-beta.html │ ├── aB-data-beta_files │ │ ├── CanvasMatrix4-1.3.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.3.14 │ │ │ └── CanvasMatrix.src.js │ │ ├── figure-html │ │ │ ├── ploteqn1-1.png │ │ │ ├── ploteqn2-1.png │ │ │ ├── ploteqn3-1.png │ │ │ └── plotmod2-1.png │ │ ├── htmlwidgets-1.6.4 │ │ │ └── htmlwidgets.js │ │ ├── rglWebGL-binding-1.3.1 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.3.14 │ │ │ └── rglWebGL.js │ │ ├── rglwidgetClass-1.3.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ └── rglwidgetClass-1.3.14 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ ├── data-beta.html │ ├── data-beta_files │ │ ├── CanvasMatrix4-0.110.2 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.0.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.3.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── figure-html │ │ │ ├── ploteqn1-1.png │ │ │ ├── ploteqn2-1.png │ │ │ ├── ploteqn3-1.png │ │ │ ├── plotmod2-1.png │ │ │ └── unnamed-chunk-7-1.png │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.4 │ │ │ └── htmlwidgets.js │ │ ├── rglWebGL-binding-0.110.2 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.0.1 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.3.1 │ │ │ └── rglWebGL.js │ │ ├── rglwidgetClass-0.110.2 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ ├── rglwidgetClass-1.0.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ └── rglwidgetClass-1.3.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ ├── det-ex1.R │ ├── det-ex1.html │ ├── det-ex1_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ └── figure-html │ │ │ ├── det-diagram1-1.png │ │ │ ├── det-diagram2-1.png │ │ │ ├── det-diagram3-1.png │ │ │ ├── unnamed-chunk-10-1.png │ │ │ ├── unnamed-chunk-12-1.png │ │ │ └── unnamed-chunk-14-1.png │ ├── det-ex2.R │ ├── det-ex2.html │ ├── det-ex2_files │ │ └── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ ├── eigen-ex1.R │ ├── eigen-ex1.html │ ├── eigen-ex1_files │ │ └── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ ├── eigen-ex2.R │ ├── eigen-ex2.html │ ├── eigen-ex2_files │ │ └── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ ├── ginv.R │ ├── ginv.html │ ├── ginv_files │ │ └── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ ├── gramreg.R │ ├── gramreg.html │ ├── gramreg_files │ │ └── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ ├── index.html │ ├── inv-3d.html │ ├── inv-3d_files │ │ ├── CanvasMatrix4-1.3.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── htmlwidgets-1.6.4 │ │ │ └── htmlwidgets.js │ │ ├── rglWebGL-binding-1.3.1 │ │ │ └── rglWebGL.js │ │ └── rglwidgetClass-1.3.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ ├── inv-ex1.R │ ├── inv-ex1.html │ ├── inv-ex1_files │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ └── figure-html │ │ │ ├── plot-inv1-1.png │ │ │ ├── plot-inv2-1.png │ │ │ └── plot-inv3-1.png │ ├── inv-ex2.R │ ├── inv-ex2.html │ ├── inv-ex2_files │ │ └── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ ├── latex-equations.html │ ├── linear-equations.R │ ├── linear-equations.html │ ├── linear-equations_files │ │ ├── CanvasMatrix4-0.110.2 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.0.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.3.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── figure-html │ │ │ ├── plotEqn1-1.png │ │ │ ├── plotEqn2-1.png │ │ │ ├── plotEqn4-1.png │ │ │ ├── unnamed-chunk-11-1.png │ │ │ ├── unnamed-chunk-3-1.png │ │ │ └── unnamed-chunk-6-1.png │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.4 │ │ │ └── htmlwidgets.js │ │ ├── rglWebGL-binding-0.110.2 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.0.1 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.3.1 │ │ │ └── rglWebGL.js │ │ ├── rglwidgetClass-0.110.2 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ ├── rglwidgetClass-1.0.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ └── rglwidgetClass-1.3.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ └── plotEqn1snapshot.png ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── deps │ ├── JetBrains_Mono-0.4.9 │ │ ├── font.css │ │ ├── tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTN1OVgaY.woff2 │ │ ├── tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTNFOVgaY.woff2 │ │ ├── tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTNVOVgaY.woff2 │ │ ├── tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTOVOVgaY.woff2 │ │ ├── tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTOlOV.woff2 │ │ └── tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTPlOVgaY.woff2 │ ├── Roboto-0.4.9 │ │ ├── KFOmCnqEu92Fr1Mu4WxKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ ├── KFOmCnqEu92Fr1Mu5mxKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu72xKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu7GxKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu7WxKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu7mxKOzY.woff2 │ │ └── font.css │ ├── Roboto_Slab-0.4.9 │ │ ├── BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmY2RjRdE.woff2 │ │ ├── BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYGRjRdE.woff2 │ │ ├── BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYWRjRdE.woff2 │ │ ├── BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYmRjRdE.woff2 │ │ ├── BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISma2RjRdE.woff2 │ │ ├── BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmb2Rj.woff2 │ │ ├── BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmbGRjRdE.woff2 │ │ └── font.css │ ├── bootstrap-5.3.1 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ └── bootstrap.min.css │ ├── bootstrap-toc-1.0.1 │ │ └── bootstrap-toc.min.js │ ├── clipboard.js-2.0.11 │ │ └── clipboard.min.js │ ├── data-deps.txt │ ├── font-awesome-6.4.2 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── font-awesome-6.5.2 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── headroom-0.11.0 │ │ ├── headroom.min.js │ │ └── jQuery.headroom.min.js │ ├── jquery-3.6.0 │ │ ├── jquery-3.6.0.js │ │ ├── jquery-3.6.0.min.js │ │ └── jquery-3.6.0.min.map │ └── search-1.0.0 │ │ ├── autocomplete.jquery.min.js │ │ ├── fuse.min.js │ │ └── mark.min.js ├── docsearch.css ├── docsearch.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── jquery.sticky-kit.min.js ├── katex-auto.js ├── lightswitch.js ├── link.svg ├── logo.png ├── matlib-logo.png ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── %X%.html │ ├── +.latexMatrix.html │ ├── -.latexMatrix.html │ ├── Det.html │ ├── Dim.html │ ├── Dim.latexMatrix.html │ ├── Dot.html │ ├── Eigen.html │ ├── Eqn.html │ ├── Eqn_helpers.html │ ├── Eqn_hspace.html │ ├── Eqn_newline.html │ ├── Eqn_overbrace.html │ ├── Eqn_overset.html │ ├── Eqn_size.html │ ├── Eqn_text.html │ ├── Eqn_underbrace.html │ ├── Eqn_underset.html │ ├── Eqn_vspace.html │ ├── Ginv.html │ ├── GramSchmidt.html │ ├── Inverse.html │ ├── J.html │ ├── LU.html │ ├── MoorePenrose.html │ ├── Ncol.html │ ├── Ncol.latexMatrix.html │ ├── Nrow.html │ ├── Nrow.latexMatrix.html │ ├── Proj.html │ ├── QR.html │ ├── R.html │ ├── Rplot001.png │ ├── Rplot002.png │ ├── Rplot003.png │ ├── SVD.html │ ├── Solve.html │ ├── [.latexMatrix.html │ ├── ^.latexMatrix.html │ ├── _PACKAGE.html │ ├── adjoint.html │ ├── angle-1.png │ ├── angle-2.png │ ├── angle.html │ ├── arc.html │ ├── arrows3d.html │ ├── as.double.latexMatrix.html │ ├── as.matrix.trace.html │ ├── buildTmat.html │ ├── cbind.latexMatrix.html │ ├── cholesky.html │ ├── circle-1.png │ ├── circle.html │ ├── circle3d.html │ ├── class-1.png │ ├── class.html │ ├── cofactor.html │ ├── coffee.html │ ├── cone3d.html │ ├── corner.html │ ├── determinant.latexMatrix.html │ ├── dimnames.latexMatrix.html │ ├── echelon.html │ ├── figures │ │ ├── CrossProduct.png │ │ ├── logo.png │ │ ├── matlib-preview.png │ │ ├── symbMat-Lambda.png │ │ ├── symbMat-SVD.png │ │ └── symbMat-x.png │ ├── gaussianElimination-1.png │ ├── gaussianElimination.html │ ├── getBody.html │ ├── getBody.latexMatrix.html │ ├── getLatex.html │ ├── getLatex.latexMatrix.html │ ├── getWrapper.html │ ├── getWrapper.latexMatrix.html │ ├── getYmult.html │ ├── gsorth.html │ ├── hspace.html │ ├── index.html │ ├── inv.html │ ├── inverse.latexMatrix.html │ ├── is.numeric.latexMatrix.html │ ├── is_orthogonal_matrix.html │ ├── is_square.html │ ├── is_symmetric_matrix.html │ ├── kronecker,latexMatrix,latexMatrix-method.html │ ├── latexMatrix.html │ ├── latexMatrixOperations.html │ ├── len.html │ ├── libs │ │ ├── CanvasMatrix4-0.110.2 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.0.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.3.1 │ │ │ └── CanvasMatrix.src.js │ │ ├── CanvasMatrix4-1.3.14 │ │ │ └── CanvasMatrix.src.js │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.2 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.4 │ │ │ └── htmlwidgets.js │ │ ├── rglWebGL-binding-0.110.2 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.0.1 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.3.1 │ │ │ └── rglWebGL.js │ │ ├── rglWebGL-binding-1.3.14 │ │ │ └── rglWebGL.js │ │ ├── rglwidgetClass-0.110.2 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ ├── rglwidgetClass-1.0.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ ├── rglwidgetClass-1.3.1 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ │ └── rglwidgetClass-1.3.14 │ │ │ ├── animation.src.js │ │ │ ├── axes.src.js │ │ │ ├── buffer.src.js │ │ │ ├── controls.src.js │ │ │ ├── draw.src.js │ │ │ ├── init.src.js │ │ │ ├── mouse.src.js │ │ │ ├── pieces.src.js │ │ │ ├── pretty.src.js │ │ │ ├── projection.src.js │ │ │ ├── rgl.css │ │ │ ├── rglClass.src.js │ │ │ ├── rglTimer.src.js │ │ │ ├── selection.src.js │ │ │ ├── shaders.src.js │ │ │ ├── shadersrc.src.js │ │ │ ├── subscenes.src.js │ │ │ ├── textures.src.js │ │ │ └── utils.src.js │ ├── matdiff.html │ ├── matdiff.latexMatrix.html │ ├── matlib-package.html │ ├── matlib.html │ ├── matmult.html │ ├── matmult.latexMatrix.html │ ├── matpower.html │ ├── matpower.latexMatrix.html │ ├── matrix2latex.html │ ├── matsum.html │ ├── matsum.latexMatrix.html │ ├── minor.html │ ├── mpower.html │ ├── newline.html │ ├── overbrace.html │ ├── overset.html │ ├── partition.html │ ├── partition.latexMatrix.html │ ├── plot.regvec3d-1.png │ ├── plot.regvec3d-2.png │ ├── plot.regvec3d.html │ ├── plotEqn-1.png │ ├── plotEqn-2.png │ ├── plotEqn.html │ ├── plotEqn3d.html │ ├── pointOnLine.html │ ├── powerMethod-1.png │ ├── powerMethod.html │ ├── print.enhancedMatrix.html │ ├── print.latexMatrix.html │ ├── print.regvec3d.html │ ├── print.trace.html │ ├── printMatEqn.html │ ├── printMatrix.html │ ├── rbind.latexMatrix.html │ ├── ref.html │ ├── regvec3d-1.png │ ├── regvec3d.default.html │ ├── regvec3d.formula.html │ ├── regvec3d.html │ ├── rowCofactors.html │ ├── rowMinors.html │ ├── rowadd.html │ ├── rowmult.html │ ├── rowswap.html │ ├── showEig-1.png │ ├── showEig-2.png │ ├── showEig.html │ ├── showEqn-1.png │ ├── showEqn.html │ ├── size.html │ ├── solve.latexMatrix.html │ ├── summary.regvec3d.html │ ├── svdDemo.html │ ├── swp.html │ ├── symMat.html │ ├── symbolicMatrix.html │ ├── t.latexMatrix.html │ ├── therapy-1.png │ ├── therapy-2.png │ ├── therapy.html │ ├── tr.html │ ├── underbrace.html │ ├── underset.html │ ├── vandermode.html │ ├── vec.html │ ├── vectors-1.png │ ├── vectors.html │ ├── vectors3d.html │ ├── vspace.html │ ├── workers-1.png │ ├── workers-2.png │ ├── workers-3.png │ ├── workers.html │ └── xprod.html ├── search.json └── sitemap.xml ├── inst └── WORDLIST ├── man ├── Det.Rd ├── Eigen.Rd ├── Eqn.Rd ├── Eqn_helpers.Rd ├── Ginv.Rd ├── GramSchmidt.Rd ├── Inverse.Rd ├── J.Rd ├── LU.Rd ├── MoorePenrose.Rd ├── Proj.Rd ├── QR.Rd ├── R.Rd ├── SVD.Rd ├── Solve.Rd ├── adjoint.Rd ├── angle.Rd ├── arc.Rd ├── arrows3d.Rd ├── buildTmat.Rd ├── cholesky.Rd ├── circle.Rd ├── circle3d.Rd ├── class.Rd ├── cofactor.Rd ├── coffee.Rd ├── cone3d.Rd ├── corner.Rd ├── echelon.Rd ├── figures │ ├── CrossProduct.png │ ├── logo.png │ ├── matlib-preview.png │ ├── symbMat-Lambda.png │ ├── symbMat-SVD.png │ └── symbMat-x.png ├── gaussianElimination.Rd ├── getYmult.Rd ├── gsorth.Rd ├── is_square.Rd ├── latexMatrix.Rd ├── latexMatrixOperations.Rd ├── len.Rd ├── matlib-package.Rd ├── matrix2latex.Rd ├── minor.Rd ├── mpower.Rd ├── plot.regvec3d.Rd ├── plotEqn.Rd ├── plotEqn3d.Rd ├── pointOnLine.Rd ├── powerMethod.Rd ├── printMatEqn.Rd ├── printMatrix.Rd ├── regvec3d.Rd ├── rowCofactors.Rd ├── rowMinors.Rd ├── rowadd.Rd ├── rowmult.Rd ├── rowswap.Rd ├── showEig.Rd ├── showEqn.Rd ├── svdDemo.Rd ├── swp.Rd ├── symMat.Rd ├── therapy.Rd ├── tr.Rd ├── vandermode.Rd ├── vec.Rd ├── vectors.Rd ├── vectors3d.Rd ├── workers.Rd └── xprod.Rd ├── old ├── Makefile └── NEWS ├── papers └── matlib-useR2016.pdf ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── README.md ├── checks │ ├── DIDmultiplegtDYN │ │ ├── DIDmultiplegtDYN_2.1.2.tar.gz │ │ ├── new │ │ │ ├── DIDmultiplegtDYN.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── DIDmultiplegtDYN-Ex.R │ │ │ │ ├── DIDmultiplegtDYN-Ex.Rout │ │ │ │ └── DIDmultiplegtDYN-Ex.pdf │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── DIDmultiplegtDYN.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── DIDmultiplegtDYN-Ex.R │ │ │ ├── DIDmultiplegtDYN-Ex.Rout │ │ │ └── DIDmultiplegtDYN-Ex.pdf │ │ │ └── libraries.txt │ ├── ETRep │ │ ├── ETRep_1.2.1.tar.gz │ │ ├── new │ │ │ ├── ETRep.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── ETRep-Ex.R │ │ │ │ ├── ETRep-Ex.Rout │ │ │ │ └── ETRep-Ex.pdf │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── ETRep.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── ETRep-Ex.R │ │ │ ├── ETRep-Ex.Rout │ │ │ └── ETRep-Ex.pdf │ │ │ └── libraries.txt │ ├── IOLS │ │ ├── IOLS_0.1.4.tar.gz │ │ ├── new │ │ │ ├── IOLS.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── IOLS-Ex.R │ │ │ │ ├── IOLS-Ex.Rout │ │ │ │ └── IOLS-Ex.pdf │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── IOLS.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── IOLS-Ex.R │ │ │ ├── IOLS-Ex.Rout │ │ │ └── IOLS-Ex.pdf │ │ │ └── libraries.txt │ ├── MVSKmod │ │ ├── MVSKmod_0.1.0.tar.gz │ │ ├── new │ │ │ ├── MVSKmod.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── MVSKmod-Ex.R │ │ │ │ ├── MVSKmod-Ex.Rout │ │ │ │ └── MVSKmod-Ex.pdf │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── MVSKmod.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── MVSKmod-Ex.R │ │ │ ├── MVSKmod-Ex.Rout │ │ │ └── MVSKmod-Ex.pdf │ │ │ └── libraries.txt │ ├── RMCDA │ │ ├── RMCDA_0.3.tar.gz │ │ ├── new │ │ │ ├── RMCDA.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── RMCDA-Ex.R │ │ │ │ ├── RMCDA-Ex.Rout │ │ │ │ ├── RMCDA-Ex.pdf │ │ │ │ └── tests │ │ │ │ │ ├── startup.Rs │ │ │ │ │ ├── testthat.R │ │ │ │ │ ├── testthat.Rout │ │ │ │ │ └── testthat │ │ │ │ │ ├── test-applyAHP.R │ │ │ │ │ ├── test-applyARAS.R │ │ │ │ │ ├── test-applyBORDA.R │ │ │ │ │ ├── test-applyBWM.R │ │ │ │ │ ├── test-applyCILOS.R │ │ │ │ │ ├── test-applyCOCOSO.R │ │ │ │ │ ├── test-applyCODAS.R │ │ │ │ │ ├── test-applyCOPELAND.R │ │ │ │ │ ├── test-applyCOPRAS.R │ │ │ │ │ ├── test-applyCRADIS.R │ │ │ │ │ ├── test-applyCRITIC.R │ │ │ │ │ ├── test-applyDEMATEL.R │ │ │ │ │ ├── test-applyEDAS.R │ │ │ │ │ ├── test-applyENTROPY.R │ │ │ │ │ ├── test-applyGRA.R │ │ │ │ │ ├── test-applyIDOCRIW.R │ │ │ │ │ ├── test-applyMABAC.R │ │ │ │ │ ├── test-applyMACBETH.R │ │ │ │ │ ├── test-applyMAIRCA.R │ │ │ │ │ ├── test-applyMARA.R │ │ │ │ │ ├── test-applyMARCOS.R │ │ │ │ │ ├── test-applyMAUT.R │ │ │ │ │ ├── test-applyMOORA.R │ │ │ │ │ ├── test-applyMOOSRA.R │ │ │ │ │ ├── test-applyMULTIMOORA.R │ │ │ │ │ ├── test-applyOCRA.R │ │ │ │ │ ├── test-applyOPA.R │ │ │ │ │ ├── test-applyORESTE.R │ │ │ │ │ ├── test-applyPIV.R │ │ │ │ │ ├── test-applyPROMETHEE.R │ │ │ │ │ ├── test-applyPSI.R │ │ │ │ │ ├── test-applyRAFSI.R │ │ │ │ │ ├── test-applyREGIME.R │ │ │ │ │ ├── test-applyRIM.R │ │ │ │ │ ├── test-applyROV.R │ │ │ │ │ ├── test-applySAW.R │ │ │ │ │ ├── test-applySBWM.R │ │ │ │ │ ├── test-applySECA.R │ │ │ │ │ ├── test-applySMART.R │ │ │ │ │ ├── test-applySMCDM.R │ │ │ │ │ ├── test-applySPOTIS.R │ │ │ │ │ ├── test-applySRMP.R │ │ │ │ │ ├── test-applyTODIM.R │ │ │ │ │ ├── test-applyTOPSIS.R │ │ │ │ │ ├── test-applyVIKOR.R │ │ │ │ │ ├── test-applyWASPAS.R │ │ │ │ │ ├── test-applyWINGS.R │ │ │ │ │ ├── test-applyWISP.R │ │ │ │ │ └── test-applyWSM_WPM.R │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── RMCDA.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── RMCDA-Ex.R │ │ │ ├── RMCDA-Ex.Rout │ │ │ ├── RMCDA-Ex.pdf │ │ │ └── tests │ │ │ │ ├── startup.Rs │ │ │ │ ├── testthat.R │ │ │ │ ├── testthat.Rout │ │ │ │ └── testthat │ │ │ │ ├── test-applyAHP.R │ │ │ │ ├── test-applyARAS.R │ │ │ │ ├── test-applyBORDA.R │ │ │ │ ├── test-applyBWM.R │ │ │ │ ├── test-applyCILOS.R │ │ │ │ ├── test-applyCOCOSO.R │ │ │ │ ├── test-applyCODAS.R │ │ │ │ ├── test-applyCOPELAND.R │ │ │ │ ├── test-applyCOPRAS.R │ │ │ │ ├── test-applyCRADIS.R │ │ │ │ ├── test-applyCRITIC.R │ │ │ │ ├── test-applyDEMATEL.R │ │ │ │ ├── test-applyEDAS.R │ │ │ │ ├── test-applyENTROPY.R │ │ │ │ ├── test-applyGRA.R │ │ │ │ ├── test-applyIDOCRIW.R │ │ │ │ ├── test-applyMABAC.R │ │ │ │ ├── test-applyMACBETH.R │ │ │ │ ├── test-applyMAIRCA.R │ │ │ │ ├── test-applyMARA.R │ │ │ │ ├── test-applyMARCOS.R │ │ │ │ ├── test-applyMAUT.R │ │ │ │ ├── test-applyMOORA.R │ │ │ │ ├── test-applyMOOSRA.R │ │ │ │ ├── test-applyMULTIMOORA.R │ │ │ │ ├── test-applyOCRA.R │ │ │ │ ├── test-applyOPA.R │ │ │ │ ├── test-applyORESTE.R │ │ │ │ ├── test-applyPIV.R │ │ │ │ ├── test-applyPROMETHEE.R │ │ │ │ ├── test-applyPSI.R │ │ │ │ ├── test-applyRAFSI.R │ │ │ │ ├── test-applyREGIME.R │ │ │ │ ├── test-applyRIM.R │ │ │ │ ├── test-applyROV.R │ │ │ │ ├── test-applySAW.R │ │ │ │ ├── test-applySBWM.R │ │ │ │ ├── test-applySECA.R │ │ │ │ ├── test-applySMART.R │ │ │ │ ├── test-applySMCDM.R │ │ │ │ ├── test-applySPOTIS.R │ │ │ │ ├── test-applySRMP.R │ │ │ │ ├── test-applyTODIM.R │ │ │ │ ├── test-applyTOPSIS.R │ │ │ │ ├── test-applyVIKOR.R │ │ │ │ ├── test-applyWASPAS.R │ │ │ │ ├── test-applyWINGS.R │ │ │ │ ├── test-applyWISP.R │ │ │ │ └── test-applyWSM_WPM.R │ │ │ └── libraries.txt │ ├── SurprisalAnalysis │ │ ├── SurprisalAnalysis_0.2.tar.gz │ │ ├── new │ │ │ ├── SurprisalAnalysis.Rcheck │ │ │ │ └── 00check.log │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── SurprisalAnalysis.Rcheck │ │ │ └── 00check.log │ │ │ └── libraries.txt │ ├── VIRF │ │ ├── VIRF_0.1.1.tar.gz │ │ ├── new │ │ │ ├── VIRF.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── VIRF-Ex.R │ │ │ │ ├── VIRF-Ex.Rout │ │ │ │ └── VIRF-Ex.pdf │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── VIRF.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── VIRF-Ex.R │ │ │ ├── VIRF-Ex.Rout │ │ │ └── VIRF-Ex.pdf │ │ │ └── libraries.txt │ ├── biplotbootGUI │ │ ├── biplotbootGUI_1.3.tar.gz │ │ ├── new │ │ │ ├── biplotbootGUI.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── biplotbootGUI-Ex.R │ │ │ │ ├── biplotbootGUI-Ex.Rout │ │ │ │ └── biplotbootGUI-Ex.pdf │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── biplotbootGUI.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── biplotbootGUI-Ex.R │ │ │ ├── biplotbootGUI-Ex.Rout │ │ │ └── biplotbootGUI-Ex.pdf │ │ │ └── libraries.txt │ ├── dymo │ │ ├── dymo_1.1.0.tar.gz │ │ ├── new │ │ │ ├── dymo.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── dymo-Ex.R │ │ │ │ ├── dymo-Ex.Rout │ │ │ │ └── dymo-Ex.pdf │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── dymo.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── dymo-Ex.R │ │ │ ├── dymo-Ex.Rout │ │ │ └── dymo-Ex.pdf │ │ │ └── libraries.txt │ ├── hyperoverlap │ │ ├── hyperoverlap_1.1.3.tar.gz │ │ ├── new │ │ │ ├── hyperoverlap.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── hyperoverlap-Ex.R │ │ │ │ ├── hyperoverlap-Ex.Rout │ │ │ │ └── hyperoverlap-Ex.pdf │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── hyperoverlap.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── hyperoverlap-Ex.R │ │ │ ├── hyperoverlap-Ex.Rout │ │ │ └── hyperoverlap-Ex.pdf │ │ │ └── libraries.txt │ ├── libraries.csv │ ├── panelSUR │ │ ├── new │ │ │ ├── libraries.txt │ │ │ └── panelSUR.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── panelSUR-Ex.R │ │ │ │ ├── panelSUR-Ex.Rout │ │ │ │ └── panelSUR-Ex.pdf │ │ ├── old │ │ │ ├── libraries.txt │ │ │ └── panelSUR.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── panelSUR-Ex.R │ │ │ │ ├── panelSUR-Ex.Rout │ │ │ │ └── panelSUR-Ex.pdf │ │ └── panelSUR_0.1.0.tar.gz │ └── smallstuff │ │ ├── new │ │ ├── libraries.txt │ │ └── smallstuff.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── smallstuff-Ex.R │ │ │ ├── smallstuff-Ex.Rout │ │ │ └── smallstuff-Ex.pdf │ │ ├── old │ │ ├── libraries.txt │ │ └── smallstuff.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── smallstuff-Ex.R │ │ │ ├── smallstuff-Ex.Rout │ │ │ └── smallstuff-Ex.pdf │ │ └── smallstuff_1.0.5.tar.gz ├── cran.md ├── data.sqlite ├── failures.md ├── library │ └── matlib │ │ ├── new │ │ ├── broom │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── broom │ │ │ │ ├── broom.rdb │ │ │ │ ├── broom.rdx │ │ │ │ ├── sysdata.rdb │ │ │ │ └── sysdata.rdx │ │ │ ├── WORDLIST │ │ │ ├── doc │ │ │ │ ├── adding-tidiers.Rmd │ │ │ │ ├── adding-tidiers.html │ │ │ │ ├── available-methods.R │ │ │ │ ├── available-methods.Rmd │ │ │ │ ├── available-methods.html │ │ │ │ ├── bootstrapping.R │ │ │ │ ├── bootstrapping.Rmd │ │ │ │ ├── bootstrapping.html │ │ │ │ ├── broom.R │ │ │ │ ├── broom.Rmd │ │ │ │ ├── broom.html │ │ │ │ ├── broom_and_dplyr.R │ │ │ │ ├── broom_and_dplyr.Rmd │ │ │ │ ├── broom_and_dplyr.html │ │ │ │ ├── index.html │ │ │ │ ├── kmeans.Rmd │ │ │ │ └── kmeans.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── broom.rdb │ │ │ │ ├── broom.rdx │ │ │ │ ├── figures │ │ │ │ │ └── logo.png │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── ggplot2 │ │ │ ├── CITATION │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── data.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── ggplot2 │ │ │ │ ├── ggplot2.rdb │ │ │ │ └── ggplot2.rdx │ │ │ ├── data │ │ │ │ ├── Rdata.rdb │ │ │ │ ├── Rdata.rds │ │ │ │ └── Rdata.rdx │ │ │ ├── doc │ │ │ │ ├── extending-ggplot2.R │ │ │ │ ├── extending-ggplot2.Rmd │ │ │ │ ├── extending-ggplot2.html │ │ │ │ ├── ggplot2-in-packages.R │ │ │ │ ├── ggplot2-in-packages.Rmd │ │ │ │ ├── ggplot2-in-packages.html │ │ │ │ ├── ggplot2-specs.R │ │ │ │ ├── ggplot2-specs.Rmd │ │ │ │ ├── ggplot2-specs.html │ │ │ │ ├── ggplot2.R │ │ │ │ ├── ggplot2.Rmd │ │ │ │ ├── ggplot2.html │ │ │ │ └── index.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── README-example-1.png │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ ├── linetype_table.pdf │ │ │ │ │ ├── linetype_table.svg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── shape_table.pdf │ │ │ │ │ └── shape_table.svg │ │ │ │ ├── ggplot2.rdb │ │ │ │ ├── ggplot2.rdx │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── magrittr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── magrittr │ │ │ │ ├── magrittr.rdb │ │ │ │ └── magrittr.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── magrittr.R │ │ │ │ ├── magrittr.Rmd │ │ │ │ ├── magrittr.html │ │ │ │ ├── tradeoffs.R │ │ │ │ ├── tradeoffs.Rmd │ │ │ │ └── tradeoffs.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── exposition-1.png │ │ │ │ │ └── logo.png │ │ │ │ ├── magrittr.rdb │ │ │ │ ├── magrittr.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── libs │ │ │ │ └── x64 │ │ │ │ │ ├── magrittr.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── logo-hex.png │ │ │ ├── logo-hex.svg │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ ├── matlib │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── data.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── matlib │ │ │ │ ├── matlib.rdb │ │ │ │ └── matlib.rdx │ │ │ ├── WORDLIST │ │ │ ├── data │ │ │ │ ├── Rdata.rdb │ │ │ │ ├── Rdata.rds │ │ │ │ └── Rdata.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── CrossProduct.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── matlib-preview.png │ │ │ │ │ ├── symbMat-Lambda.png │ │ │ │ │ ├── symbMat-SVD.png │ │ │ │ │ └── symbMat-x.png │ │ │ │ ├── matlib.rdb │ │ │ │ ├── matlib.rdx │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── pillar │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── pillar │ │ │ │ ├── pillar.rdb │ │ │ │ └── pillar.rdx │ │ │ ├── WORDLIST │ │ │ ├── doc │ │ │ │ ├── debugme.R │ │ │ │ ├── debugme.Rmd │ │ │ │ ├── debugme.html │ │ │ │ ├── digits.Rmd │ │ │ │ ├── digits.html │ │ │ │ ├── extending.R │ │ │ │ ├── extending.Rmd │ │ │ │ ├── extending.html │ │ │ │ ├── index.html │ │ │ │ ├── numbers.R │ │ │ │ ├── numbers.Rmd │ │ │ │ ├── numbers.html │ │ │ │ ├── printing.R │ │ │ │ ├── printing.Rmd │ │ │ │ └── printing.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ └── lifecycle-superseded.svg │ │ │ │ ├── paths.rds │ │ │ │ ├── pillar.rdb │ │ │ │ └── pillar.rdx │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ └── rmarkdown │ │ │ ├── CITATION │ │ │ ├── COPYING │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── NOTICE │ │ │ ├── R │ │ │ ├── rmarkdown │ │ │ ├── rmarkdown.rdb │ │ │ └── rmarkdown.rdx │ │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── lua-filters.R │ │ │ ├── lua-filters.Rmd │ │ │ ├── lua-filters.html │ │ │ ├── rmarkdown.R │ │ │ ├── rmarkdown.Rmd │ │ │ └── rmarkdown.html │ │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── link-black-18dp.svg │ │ │ │ └── logo.png │ │ │ ├── paths.rds │ │ │ ├── rmarkdown.rdb │ │ │ └── rmarkdown.rdx │ │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ │ ├── rmarkdown │ │ │ ├── highlight │ │ │ │ ├── arrow.theme │ │ │ │ └── rstudio.theme │ │ │ ├── lua │ │ │ │ ├── anchor-sections.lua │ │ │ │ ├── codefolding.lua │ │ │ │ ├── latex-div.lua │ │ │ │ ├── number-sections.lua │ │ │ │ ├── pagebreak.lua │ │ │ │ ├── shared.lua │ │ │ │ └── table-classes.lua │ │ │ └── templates │ │ │ │ ├── github_document │ │ │ │ ├── resources │ │ │ │ │ ├── default.md │ │ │ │ │ ├── github.css │ │ │ │ │ └── preview.html │ │ │ │ ├── skeleton │ │ │ │ │ └── skeleton.Rmd │ │ │ │ └── template.yaml │ │ │ │ └── html_vignette │ │ │ │ ├── resources │ │ │ │ └── vignette.css │ │ │ │ ├── skeleton │ │ │ │ └── skeleton.Rmd │ │ │ │ └── template.yaml │ │ │ ├── rmd │ │ │ ├── fragment │ │ │ │ ├── default.html │ │ │ │ └── default.tex │ │ │ ├── h │ │ │ │ ├── _navbar.html │ │ │ │ ├── accessibility │ │ │ │ │ └── empty-anchor.js │ │ │ │ ├── anchor-sections │ │ │ │ │ ├── anchor-sections-hash.css │ │ │ │ │ ├── anchor-sections-icon.css │ │ │ │ │ ├── anchor-sections-symbol.css │ │ │ │ │ ├── anchor-sections.css │ │ │ │ │ └── anchor-sections.js │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── cerulean.min.css │ │ │ │ │ │ ├── cosmo.min.css │ │ │ │ │ │ ├── darkly.min.css │ │ │ │ │ │ ├── flatly.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── Lato.ttf │ │ │ │ │ │ │ ├── LatoBold.ttf │ │ │ │ │ │ │ ├── LatoItalic.ttf │ │ │ │ │ │ │ ├── NewsCycle.ttf │ │ │ │ │ │ │ ├── NewsCycleBold.ttf │ │ │ │ │ │ │ ├── OpenSans.ttf │ │ │ │ │ │ │ ├── OpenSansBold.ttf │ │ │ │ │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ │ │ │ │ ├── OpenSansItalic.ttf │ │ │ │ │ │ │ ├── OpenSansLight.ttf │ │ │ │ │ │ │ ├── OpenSansLightItalic.ttf │ │ │ │ │ │ │ ├── Raleway.ttf │ │ │ │ │ │ │ ├── RalewayBold.ttf │ │ │ │ │ │ │ ├── Roboto.ttf │ │ │ │ │ │ │ ├── RobotoBold.ttf │ │ │ │ │ │ │ ├── RobotoLight.ttf │ │ │ │ │ │ │ ├── RobotoMedium.ttf │ │ │ │ │ │ │ ├── SourceSansPro.ttf │ │ │ │ │ │ │ ├── SourceSansProBold.ttf │ │ │ │ │ │ │ ├── SourceSansProItalic.ttf │ │ │ │ │ │ │ ├── SourceSansProLight.ttf │ │ │ │ │ │ │ └── Ubuntu.ttf │ │ │ │ │ │ ├── journal.min.css │ │ │ │ │ │ ├── lumen.min.css │ │ │ │ │ │ ├── paper.min.css │ │ │ │ │ │ ├── readable.min.css │ │ │ │ │ │ ├── sandstone.min.css │ │ │ │ │ │ ├── simplex.min.css │ │ │ │ │ │ ├── spacelab.min.css │ │ │ │ │ │ ├── united.min.css │ │ │ │ │ │ └── yeti.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ │ └── shim │ │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ │ └── respond.min.js │ │ │ │ ├── default.html │ │ │ │ ├── highlightjs │ │ │ │ │ ├── default.css │ │ │ │ │ ├── highlight.js │ │ │ │ │ └── textmate.css │ │ │ │ ├── ionicons │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ionicons.css │ │ │ │ │ │ └── ionicons.min.css │ │ │ │ │ └── fonts │ │ │ │ │ │ └── ionicons.ttf │ │ │ │ ├── jqueryui │ │ │ │ │ ├── AUTHORS.txt │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ │ ├── jquery-ui.theme.css │ │ │ │ │ └── jquery-ui.theme.min.css │ │ │ │ ├── navigation-1.1 │ │ │ │ │ ├── codefolding-lua.css │ │ │ │ │ ├── codefolding.js │ │ │ │ │ ├── sourceembed.js │ │ │ │ │ └── tabsets.js │ │ │ │ ├── pagedtable-1.1 │ │ │ │ │ ├── css │ │ │ │ │ │ └── pagedtable.css │ │ │ │ │ └── js │ │ │ │ │ │ └── pagedtable.js │ │ │ │ ├── pandoc │ │ │ │ │ └── header-attrs.js │ │ │ │ ├── rmarkdown │ │ │ │ │ ├── rmd_loader.css │ │ │ │ │ ├── rmd_loader.gif │ │ │ │ │ ├── rmd_loader.js │ │ │ │ │ ├── rmd_perf.css │ │ │ │ │ └── rmd_perf.js │ │ │ │ ├── rsiframe-1.1 │ │ │ │ │ └── rsiframe.js │ │ │ │ ├── shiny-header.html │ │ │ │ ├── tabset │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── tabset.css │ │ │ │ │ └── tabset.js │ │ │ │ └── tocify │ │ │ │ │ ├── jquery.tocify.css │ │ │ │ │ └── jquery.tocify.js │ │ │ ├── ioslides │ │ │ │ ├── default.html │ │ │ │ ├── ioslides-13.5.1 │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── OpenSans.ttf │ │ │ │ │ │ ├── OpenSansItalic.ttf │ │ │ │ │ │ ├── OpenSansSemibold.ttf │ │ │ │ │ │ ├── OpenSansSemiboldItalic.ttf │ │ │ │ │ │ ├── SourceCodePro.ttf │ │ │ │ │ │ └── fonts.css │ │ │ │ │ ├── images │ │ │ │ │ │ └── google_developers_icon_128.png │ │ │ │ │ ├── js │ │ │ │ │ │ ├── hammer.js │ │ │ │ │ │ ├── modernizr.custom.45394.js │ │ │ │ │ │ ├── order.js │ │ │ │ │ │ ├── polyfills │ │ │ │ │ │ │ ├── classList.min.js │ │ │ │ │ │ │ ├── dataset.min.js │ │ │ │ │ │ │ └── history.min.js │ │ │ │ │ │ ├── prettify │ │ │ │ │ │ │ ├── lang-r.js │ │ │ │ │ │ │ ├── lang-tex.js │ │ │ │ │ │ │ ├── lang-yaml.js │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ └── prettify.js │ │ │ │ │ │ ├── require-1.0.8.min.js │ │ │ │ │ │ ├── slide-controller.js │ │ │ │ │ │ └── slide-deck.js │ │ │ │ │ └── theme │ │ │ │ │ │ └── css │ │ │ │ │ │ ├── default.css │ │ │ │ │ │ └── phone.css │ │ │ │ └── ioslides_presentation.lua │ │ │ ├── latex │ │ │ │ └── subtitle.tex │ │ │ ├── site │ │ │ │ ├── _site.yml │ │ │ │ ├── about.Rmd │ │ │ │ └── index.Rmd │ │ │ └── slidy │ │ │ │ ├── Slidy2 │ │ │ │ ├── graphics │ │ │ │ │ ├── bullet-fold-dim.gif │ │ │ │ │ ├── bullet-fold-dim.png │ │ │ │ │ ├── bullet-fold.gif │ │ │ │ │ ├── bullet-fold.png │ │ │ │ │ ├── bullet-nofold-dim.gif │ │ │ │ │ ├── bullet-nofold-dim.png │ │ │ │ │ ├── bullet-nofold.gif │ │ │ │ │ ├── bullet-nofold.png │ │ │ │ │ ├── bullet-unfold-dim.gif │ │ │ │ │ ├── bullet-unfold-dim.png │ │ │ │ │ ├── bullet-unfold.gif │ │ │ │ │ ├── bullet-unfold.png │ │ │ │ │ ├── bullet.gif │ │ │ │ │ ├── bullet.png │ │ │ │ │ ├── example.png │ │ │ │ │ ├── example.svg │ │ │ │ │ ├── face1.gif │ │ │ │ │ ├── face2.gif │ │ │ │ │ ├── face3.gif │ │ │ │ │ ├── face4.gif │ │ │ │ │ ├── fold-bright.gif │ │ │ │ │ ├── fold-dim.bmp │ │ │ │ │ ├── fold-dim.gif │ │ │ │ │ ├── fold.bmp │ │ │ │ │ ├── fold.gif │ │ │ │ │ ├── icon-blue.png │ │ │ │ │ ├── keys2.jpg │ │ │ │ │ ├── nofold-dim.bmp │ │ │ │ │ ├── nofold-dim.gif │ │ │ │ │ ├── nofold.bmp │ │ │ │ │ ├── unfold-bright.gif │ │ │ │ │ ├── unfold-dim.bmp │ │ │ │ │ ├── unfold-dim.gif │ │ │ │ │ ├── unfold.bmp │ │ │ │ │ ├── unfold.gif │ │ │ │ │ ├── w3c-logo-blue.gif │ │ │ │ │ ├── w3c-logo-blue.svg │ │ │ │ │ ├── w3c-logo-slanted.jpg │ │ │ │ │ ├── w3c-logo-white.gif │ │ │ │ │ └── w3c-logo-white.svg │ │ │ │ ├── scripts │ │ │ │ │ ├── img.srcset.js │ │ │ │ │ ├── slidy-irc.js │ │ │ │ │ ├── slidy.js │ │ │ │ │ └── slidy.js.gz │ │ │ │ └── styles │ │ │ │ │ ├── slidy.css │ │ │ │ │ └── w3c-blue.css │ │ │ │ ├── default.html │ │ │ │ └── slidy_shiny.js │ │ │ └── rstudio │ │ │ └── templates │ │ │ └── project │ │ │ └── skeleton.dcf │ │ └── old │ │ └── matlib │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ ├── Rd.rds │ │ ├── data.rds │ │ ├── features.rds │ │ ├── hsearch.rds │ │ ├── links.rds │ │ ├── nsInfo.rds │ │ ├── package.rds │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ ├── matlib │ │ ├── matlib.rdb │ │ └── matlib.rdx │ │ ├── WORDLIST │ │ ├── data │ │ ├── Rdata.rdb │ │ ├── Rdata.rds │ │ └── Rdata.rdx │ │ ├── doc │ │ ├── data-beta.R │ │ ├── data-beta.Rmd │ │ ├── data-beta.html │ │ ├── det-ex1.R │ │ ├── det-ex1.Rmd │ │ ├── det-ex1.html │ │ ├── det-ex2.R │ │ ├── det-ex2.Rmd │ │ ├── det-ex2.html │ │ ├── eigen-ex1.R │ │ ├── eigen-ex1.Rmd │ │ ├── eigen-ex1.html │ │ ├── eigen-ex2.R │ │ ├── eigen-ex2.Rmd │ │ ├── eigen-ex2.html │ │ ├── ginv.R │ │ ├── ginv.Rmd │ │ ├── ginv.html │ │ ├── gramreg.R │ │ ├── gramreg.Rmd │ │ ├── gramreg.html │ │ ├── index.html │ │ ├── inv-3d.R │ │ ├── inv-3d.Rmd │ │ ├── inv-3d.html │ │ ├── inv-ex1.R │ │ ├── inv-ex1.Rmd │ │ ├── inv-ex1.html │ │ ├── inv-ex2.R │ │ ├── inv-ex2.Rmd │ │ ├── inv-ex2.html │ │ ├── latex-equations.R │ │ ├── latex-equations.Rmd │ │ ├── latex-equations.html │ │ ├── linear-equations.R │ │ ├── linear-equations.Rmd │ │ └── linear-equations.html │ │ ├── help │ │ ├── AnIndex │ │ ├── aliases.rds │ │ ├── figures │ │ │ ├── CrossProduct.png │ │ │ ├── logo.png │ │ │ ├── symbMat-Lambda.png │ │ │ ├── symbMat-SVD.png │ │ │ └── symbMat-x.png │ │ ├── matlib.rdb │ │ ├── matlib.rdx │ │ └── paths.rds │ │ └── html │ │ ├── 00Index.html │ │ └── R.css └── problems.md └── vignettes ├── CanvasMatrix.js ├── a1-det-ex1.Rmd ├── a2-det-ex2.Rmd ├── a3-inv-ex1.Rmd ├── a4-inv-ex2.Rmd ├── a5-ginv.Rmd ├── a6-inv-3d.Rmd ├── a7-eigen-ex1.Rmd ├── a8-eigen-ex2.Rmd ├── a9-linear-equations.Rmd ├── aA-gramreg.Rmd ├── aB-data-beta.Rmd ├── latex-equations.Rmd └── references.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.build-steps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/.build-steps.R -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/Eigen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/Eigen.R -------------------------------------------------------------------------------- /R/Eqn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/Eqn.R -------------------------------------------------------------------------------- /R/Eqn_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/Eqn_helpers.R -------------------------------------------------------------------------------- /R/GramSchmidt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/GramSchmidt.R -------------------------------------------------------------------------------- /R/J.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/J.R -------------------------------------------------------------------------------- /R/LU.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/LU.R -------------------------------------------------------------------------------- /R/MoorePenrose.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/MoorePenrose.R -------------------------------------------------------------------------------- /R/QR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/QR.R -------------------------------------------------------------------------------- /R/R.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/R.R -------------------------------------------------------------------------------- /R/Solve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/Solve.R -------------------------------------------------------------------------------- /R/angle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/angle.R -------------------------------------------------------------------------------- /R/arrows3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/arrows3d.R -------------------------------------------------------------------------------- /R/circle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/circle.R -------------------------------------------------------------------------------- /R/corner.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/corner.R -------------------------------------------------------------------------------- /R/determinants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/determinants.R -------------------------------------------------------------------------------- /R/gaussian-elimination.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/gaussian-elimination.R -------------------------------------------------------------------------------- /R/gsorth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/gsorth.R -------------------------------------------------------------------------------- /R/is_square.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/is_square.R -------------------------------------------------------------------------------- /R/latexMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/latexMatrix.R -------------------------------------------------------------------------------- /R/latexMatrixOperations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/latexMatrixOperations.R -------------------------------------------------------------------------------- /R/len.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/len.R -------------------------------------------------------------------------------- /R/matlib-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/matlib-package.R -------------------------------------------------------------------------------- /R/matrix2latex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/matrix2latex.R -------------------------------------------------------------------------------- /R/mpower.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/mpower.R -------------------------------------------------------------------------------- /R/plotEqn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/plotEqn.R -------------------------------------------------------------------------------- /R/powerMethod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/powerMethod.R -------------------------------------------------------------------------------- /R/printMatEqn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/printMatEqn.R -------------------------------------------------------------------------------- /R/proj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/proj.R -------------------------------------------------------------------------------- /R/regvec3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/regvec3d.R -------------------------------------------------------------------------------- /R/rowops.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/rowops.R -------------------------------------------------------------------------------- /R/showEig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/showEig.R -------------------------------------------------------------------------------- /R/showEqn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/showEqn.R -------------------------------------------------------------------------------- /R/svdDemo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/svdDemo.R -------------------------------------------------------------------------------- /R/swp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/swp.R -------------------------------------------------------------------------------- /R/symMat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/symMat.R -------------------------------------------------------------------------------- /R/tr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/tr.R -------------------------------------------------------------------------------- /R/util.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/util.R -------------------------------------------------------------------------------- /R/vandermode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/vandermode.R -------------------------------------------------------------------------------- /R/vec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/vec.R -------------------------------------------------------------------------------- /R/vectors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/vectors.R -------------------------------------------------------------------------------- /R/vectors3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/vectors3d.R -------------------------------------------------------------------------------- /R/xprod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/R/xprod.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/class.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/data/class.RData -------------------------------------------------------------------------------- /data/coffee.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/data/coffee.RData -------------------------------------------------------------------------------- /data/therapy.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/data/therapy.RData -------------------------------------------------------------------------------- /data/workers.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/data/workers.RData -------------------------------------------------------------------------------- /dev/3D-graph-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/3D-graph-3.png -------------------------------------------------------------------------------- /dev/3d-demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/3d-demo.R -------------------------------------------------------------------------------- /dev/3d-demo0.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/3d-demo0.Rmd -------------------------------------------------------------------------------- /dev/3d-inv-demo/inv-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/3d-inv-demo/inv-demo.gif -------------------------------------------------------------------------------- /dev/3d-inv-demo/inv-demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/3d-inv-demo/inv-demo1.png -------------------------------------------------------------------------------- /dev/Arith.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Arith.R -------------------------------------------------------------------------------- /dev/Arith2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Arith2.R -------------------------------------------------------------------------------- /dev/Eqn-testqmd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn-testqmd.pdf -------------------------------------------------------------------------------- /dev/Eqn-testqmd.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn-testqmd.qmd -------------------------------------------------------------------------------- /dev/Eqn_helpers0.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_helpers0.R -------------------------------------------------------------------------------- /dev/Eqn_test.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test.Rmd -------------------------------------------------------------------------------- /dev/Eqn_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test.html -------------------------------------------------------------------------------- /dev/Eqn_test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test.pdf -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/bootstrap/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/bootstrap/bootstrap-icons.css -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/quarto-html/anchor.min.js -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/quarto-html/quarto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/quarto-html/quarto.js -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /dev/Eqn_test_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /dev/Eqn_test_quarto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_quarto.html -------------------------------------------------------------------------------- /dev/Eqn_test_quarto.knit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_quarto.knit.md -------------------------------------------------------------------------------- /dev/Eqn_test_quarto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_quarto.qmd -------------------------------------------------------------------------------- /dev/Eqn_test_quarto_files/libs/quarto-html/quarto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_quarto_files/libs/quarto-html/quarto.js -------------------------------------------------------------------------------- /dev/Eqn_test_quarto_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Eqn_test_quarto_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /dev/Prepare_for_CRAN.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/Prepare_for_CRAN.R -------------------------------------------------------------------------------- /dev/SSP-decomp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/SSP-decomp.png -------------------------------------------------------------------------------- /dev/SVD-demo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/SVD-demo.Rmd -------------------------------------------------------------------------------- /dev/addPartitions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/addPartitions.R -------------------------------------------------------------------------------- /dev/angle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/angle.R -------------------------------------------------------------------------------- /dev/ann.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/ann.md -------------------------------------------------------------------------------- /dev/as_latex.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/as_latex.Rmd -------------------------------------------------------------------------------- /dev/as_latex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/as_latex.html -------------------------------------------------------------------------------- /dev/as_latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/as_latex.md -------------------------------------------------------------------------------- /dev/bordermatrix.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/bordermatrix.Rmd -------------------------------------------------------------------------------- /dev/bordermatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/bordermatrix.html -------------------------------------------------------------------------------- /dev/bracket.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/bracket.R -------------------------------------------------------------------------------- /dev/contrasts-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/contrasts-test.R -------------------------------------------------------------------------------- /dev/dogfood.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/dogfood.RData -------------------------------------------------------------------------------- /dev/dot-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/dot-test.R -------------------------------------------------------------------------------- /dev/dot-test2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/dot-test2.R -------------------------------------------------------------------------------- /dev/dot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/dot.R -------------------------------------------------------------------------------- /dev/dot0.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/dot0.R -------------------------------------------------------------------------------- /dev/eigen-ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/eigen-ex.R -------------------------------------------------------------------------------- /dev/hat-matrix-underbrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/hat-matrix-underbrace.png -------------------------------------------------------------------------------- /dev/kronecker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/kronecker.R -------------------------------------------------------------------------------- /dev/latexMatrix-examples-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/latexMatrix-examples-tests.R -------------------------------------------------------------------------------- /dev/latexMatrix-examples-tests.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/latexMatrix-examples-tests.Rmd -------------------------------------------------------------------------------- /dev/latexMatrixOperations-MF-edits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/latexMatrixOperations-MF-edits.R -------------------------------------------------------------------------------- /dev/latexMatrixOperations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/latexMatrixOperations.R -------------------------------------------------------------------------------- /dev/operations-with-names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/operations-with-names.R -------------------------------------------------------------------------------- /dev/over_under-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/over_under-test.R -------------------------------------------------------------------------------- /dev/over_under.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/over_under.R -------------------------------------------------------------------------------- /dev/overset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/overset.R -------------------------------------------------------------------------------- /dev/partition.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/partition.R -------------------------------------------------------------------------------- /dev/pkgdown-issue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/pkgdown-issue.txt -------------------------------------------------------------------------------- /dev/plotEqn-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/plotEqn-test.R -------------------------------------------------------------------------------- /dev/plotEqn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/plotEqn.R -------------------------------------------------------------------------------- /dev/print.latexMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/print.latexMatrix.R -------------------------------------------------------------------------------- /dev/printEqn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/printEqn.R -------------------------------------------------------------------------------- /dev/renderMatrix-notes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/renderMatrix-notes.Rmd -------------------------------------------------------------------------------- /dev/renderMatrix-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/renderMatrix-notes.html -------------------------------------------------------------------------------- /dev/row-col-names-test2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/row-col-names-test2.R -------------------------------------------------------------------------------- /dev/row-col-names-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/row-col-names-tests.R -------------------------------------------------------------------------------- /dev/showEqn-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/showEqn-test.R -------------------------------------------------------------------------------- /dev/simplify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/simplify.R -------------------------------------------------------------------------------- /dev/symbolicMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/symbolicMatrix.R -------------------------------------------------------------------------------- /dev/symbolicMatrix2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/symbolicMatrix2.R -------------------------------------------------------------------------------- /dev/test-eqn-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/test-eqn-vignette.Rmd -------------------------------------------------------------------------------- /dev/test-eqn-vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/test-eqn-vignette.html -------------------------------------------------------------------------------- /dev/test-symbolic-matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/test-symbolic-matrix.R -------------------------------------------------------------------------------- /dev/test-vectors3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/test-vectors3d.R -------------------------------------------------------------------------------- /dev/test.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/test.Rmd -------------------------------------------------------------------------------- /dev/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/test.pdf -------------------------------------------------------------------------------- /dev/vectors3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/dev/vectors3d.R -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/announce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/announce.html -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/3d-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/3d-demo.html -------------------------------------------------------------------------------- /docs/articles/CanvasMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/CanvasMatrix.js -------------------------------------------------------------------------------- /docs/articles/a1-det-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a1-det-ex1.html -------------------------------------------------------------------------------- /docs/articles/a2-det-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a2-det-ex2.html -------------------------------------------------------------------------------- /docs/articles/a3-inv-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a3-inv-ex1.html -------------------------------------------------------------------------------- /docs/articles/a4-inv-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a4-inv-ex2.html -------------------------------------------------------------------------------- /docs/articles/a5-ginv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a5-ginv.html -------------------------------------------------------------------------------- /docs/articles/a6-inv-3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a6-inv-3d.html -------------------------------------------------------------------------------- /docs/articles/a7-eigen-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a7-eigen-ex1.html -------------------------------------------------------------------------------- /docs/articles/a8-eigen-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a8-eigen-ex2.html -------------------------------------------------------------------------------- /docs/articles/a9-linear-equations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/a9-linear-equations.html -------------------------------------------------------------------------------- /docs/articles/aA-gramreg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/aA-gramreg.html -------------------------------------------------------------------------------- /docs/articles/aB-data-beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/aB-data-beta.html -------------------------------------------------------------------------------- /docs/articles/data-beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/data-beta.html -------------------------------------------------------------------------------- /docs/articles/det-ex1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/det-ex1.R -------------------------------------------------------------------------------- /docs/articles/det-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/det-ex1.html -------------------------------------------------------------------------------- /docs/articles/det-ex2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/det-ex2.R -------------------------------------------------------------------------------- /docs/articles/det-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/det-ex2.html -------------------------------------------------------------------------------- /docs/articles/eigen-ex1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/eigen-ex1.R -------------------------------------------------------------------------------- /docs/articles/eigen-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/eigen-ex1.html -------------------------------------------------------------------------------- /docs/articles/eigen-ex2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/eigen-ex2.R -------------------------------------------------------------------------------- /docs/articles/eigen-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/eigen-ex2.html -------------------------------------------------------------------------------- /docs/articles/ginv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/ginv.R -------------------------------------------------------------------------------- /docs/articles/ginv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/ginv.html -------------------------------------------------------------------------------- /docs/articles/gramreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/gramreg.R -------------------------------------------------------------------------------- /docs/articles/gramreg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/gramreg.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/inv-3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/inv-3d.html -------------------------------------------------------------------------------- /docs/articles/inv-ex1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/inv-ex1.R -------------------------------------------------------------------------------- /docs/articles/inv-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/inv-ex1.html -------------------------------------------------------------------------------- /docs/articles/inv-ex2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/inv-ex2.R -------------------------------------------------------------------------------- /docs/articles/inv-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/inv-ex2.html -------------------------------------------------------------------------------- /docs/articles/latex-equations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/latex-equations.html -------------------------------------------------------------------------------- /docs/articles/linear-equations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/linear-equations.R -------------------------------------------------------------------------------- /docs/articles/linear-equations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/linear-equations.html -------------------------------------------------------------------------------- /docs/articles/plotEqn1snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/articles/plotEqn1snapshot.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/deps/JetBrains_Mono-0.4.9/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/JetBrains_Mono-0.4.9/font.css -------------------------------------------------------------------------------- /docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu4WxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu4WxKOzY.woff2 -------------------------------------------------------------------------------- /docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu4mxK.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu4mxK.woff2 -------------------------------------------------------------------------------- /docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu5mxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu5mxKOzY.woff2 -------------------------------------------------------------------------------- /docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu72xKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu72xKOzY.woff2 -------------------------------------------------------------------------------- /docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu7GxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 -------------------------------------------------------------------------------- /docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu7WxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu7WxKOzY.woff2 -------------------------------------------------------------------------------- /docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu7mxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto-0.4.9/KFOmCnqEu92Fr1Mu7mxKOzY.woff2 -------------------------------------------------------------------------------- /docs/deps/Roboto-0.4.9/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto-0.4.9/font.css -------------------------------------------------------------------------------- /docs/deps/Roboto_Slab-0.4.9/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/Roboto_Slab-0.4.9/font.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js -------------------------------------------------------------------------------- /docs/deps/clipboard.js-2.0.11/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/clipboard.js-2.0.11/clipboard.min.js -------------------------------------------------------------------------------- /docs/deps/data-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/data-deps.txt -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/font-awesome-6.4.2/css/all.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/font-awesome-6.4.2/css/all.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/font-awesome-6.4.2/css/v4-shims.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/font-awesome-6.4.2/css/v4-shims.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/font-awesome-6.5.2/css/all.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/font-awesome-6.5.2/css/all.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.min.css -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/headroom-0.11.0/headroom.min.js -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/jQuery.headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/headroom-0.11.0/jQuery.headroom.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/autocomplete.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/search-1.0.0/autocomplete.jquery.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/fuse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/search-1.0.0/fuse.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/deps/search-1.0.0/mark.min.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/katex-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/katex-auto.js -------------------------------------------------------------------------------- /docs/lightswitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/lightswitch.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/matlib-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/matlib-logo.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/%X%.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/%X%.html -------------------------------------------------------------------------------- /docs/reference/+.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/+.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/-.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/-.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/Det.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Det.html -------------------------------------------------------------------------------- /docs/reference/Dim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Dim.html -------------------------------------------------------------------------------- /docs/reference/Dim.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Dim.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/Dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Dot.html -------------------------------------------------------------------------------- /docs/reference/Eigen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eigen.html -------------------------------------------------------------------------------- /docs/reference/Eqn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn.html -------------------------------------------------------------------------------- /docs/reference/Eqn_helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_helpers.html -------------------------------------------------------------------------------- /docs/reference/Eqn_hspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_hspace.html -------------------------------------------------------------------------------- /docs/reference/Eqn_newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_newline.html -------------------------------------------------------------------------------- /docs/reference/Eqn_overbrace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_overbrace.html -------------------------------------------------------------------------------- /docs/reference/Eqn_overset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_overset.html -------------------------------------------------------------------------------- /docs/reference/Eqn_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_size.html -------------------------------------------------------------------------------- /docs/reference/Eqn_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_text.html -------------------------------------------------------------------------------- /docs/reference/Eqn_underbrace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_underbrace.html -------------------------------------------------------------------------------- /docs/reference/Eqn_underset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_underset.html -------------------------------------------------------------------------------- /docs/reference/Eqn_vspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Eqn_vspace.html -------------------------------------------------------------------------------- /docs/reference/Ginv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Ginv.html -------------------------------------------------------------------------------- /docs/reference/GramSchmidt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/GramSchmidt.html -------------------------------------------------------------------------------- /docs/reference/Inverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Inverse.html -------------------------------------------------------------------------------- /docs/reference/J.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/J.html -------------------------------------------------------------------------------- /docs/reference/LU.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/LU.html -------------------------------------------------------------------------------- /docs/reference/MoorePenrose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/MoorePenrose.html -------------------------------------------------------------------------------- /docs/reference/Ncol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Ncol.html -------------------------------------------------------------------------------- /docs/reference/Ncol.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Ncol.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/Nrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Nrow.html -------------------------------------------------------------------------------- /docs/reference/Nrow.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Nrow.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/Proj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Proj.html -------------------------------------------------------------------------------- /docs/reference/QR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/QR.html -------------------------------------------------------------------------------- /docs/reference/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/R.html -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Rplot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Rplot002.png -------------------------------------------------------------------------------- /docs/reference/Rplot003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Rplot003.png -------------------------------------------------------------------------------- /docs/reference/SVD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/SVD.html -------------------------------------------------------------------------------- /docs/reference/Solve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/Solve.html -------------------------------------------------------------------------------- /docs/reference/[.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/[.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/^.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/^.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/_PACKAGE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/_PACKAGE.html -------------------------------------------------------------------------------- /docs/reference/adjoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/adjoint.html -------------------------------------------------------------------------------- /docs/reference/angle-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/angle-1.png -------------------------------------------------------------------------------- /docs/reference/angle-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/angle-2.png -------------------------------------------------------------------------------- /docs/reference/angle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/angle.html -------------------------------------------------------------------------------- /docs/reference/arc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/arc.html -------------------------------------------------------------------------------- /docs/reference/arrows3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/arrows3d.html -------------------------------------------------------------------------------- /docs/reference/as.double.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/as.double.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/as.matrix.trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/as.matrix.trace.html -------------------------------------------------------------------------------- /docs/reference/buildTmat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/buildTmat.html -------------------------------------------------------------------------------- /docs/reference/cbind.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/cbind.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/cholesky.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/cholesky.html -------------------------------------------------------------------------------- /docs/reference/circle-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/circle-1.png -------------------------------------------------------------------------------- /docs/reference/circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/circle.html -------------------------------------------------------------------------------- /docs/reference/circle3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/circle3d.html -------------------------------------------------------------------------------- /docs/reference/class-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/class-1.png -------------------------------------------------------------------------------- /docs/reference/class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/class.html -------------------------------------------------------------------------------- /docs/reference/cofactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/cofactor.html -------------------------------------------------------------------------------- /docs/reference/coffee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/coffee.html -------------------------------------------------------------------------------- /docs/reference/cone3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/cone3d.html -------------------------------------------------------------------------------- /docs/reference/corner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/corner.html -------------------------------------------------------------------------------- /docs/reference/determinant.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/determinant.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/dimnames.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/dimnames.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/echelon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/echelon.html -------------------------------------------------------------------------------- /docs/reference/figures/CrossProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/figures/CrossProduct.png -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/figures/matlib-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/figures/matlib-preview.png -------------------------------------------------------------------------------- /docs/reference/figures/symbMat-Lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/figures/symbMat-Lambda.png -------------------------------------------------------------------------------- /docs/reference/figures/symbMat-SVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/figures/symbMat-SVD.png -------------------------------------------------------------------------------- /docs/reference/figures/symbMat-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/figures/symbMat-x.png -------------------------------------------------------------------------------- /docs/reference/gaussianElimination-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/gaussianElimination-1.png -------------------------------------------------------------------------------- /docs/reference/gaussianElimination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/gaussianElimination.html -------------------------------------------------------------------------------- /docs/reference/getBody.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/getBody.html -------------------------------------------------------------------------------- /docs/reference/getBody.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/getBody.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/getLatex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/getLatex.html -------------------------------------------------------------------------------- /docs/reference/getLatex.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/getLatex.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/getWrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/getWrapper.html -------------------------------------------------------------------------------- /docs/reference/getWrapper.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/getWrapper.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/getYmult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/getYmult.html -------------------------------------------------------------------------------- /docs/reference/gsorth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/gsorth.html -------------------------------------------------------------------------------- /docs/reference/hspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/hspace.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/inv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/inv.html -------------------------------------------------------------------------------- /docs/reference/inverse.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/inverse.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/is.numeric.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/is.numeric.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/is_orthogonal_matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/is_orthogonal_matrix.html -------------------------------------------------------------------------------- /docs/reference/is_square.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/is_square.html -------------------------------------------------------------------------------- /docs/reference/is_symmetric_matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/is_symmetric_matrix.html -------------------------------------------------------------------------------- /docs/reference/latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/latexMatrixOperations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/latexMatrixOperations.html -------------------------------------------------------------------------------- /docs/reference/len.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/len.html -------------------------------------------------------------------------------- /docs/reference/libs/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/reference/libs/htmlwidgets-1.6.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/htmlwidgets-1.6.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/reference/libs/htmlwidgets-1.6.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/htmlwidgets-1.6.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-0.110.2/rgl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-0.110.2/rgl.css -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.0.1/axes.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.0.1/axes.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.0.1/draw.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.0.1/draw.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.0.1/init.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.0.1/init.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.0.1/mouse.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.0.1/mouse.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.0.1/rgl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.0.1/rgl.css -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.0.1/utils.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.0.1/utils.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.1/axes.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.1/axes.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.1/draw.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.1/draw.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.1/init.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.1/init.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.1/mouse.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.1/mouse.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.1/rgl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.1/rgl.css -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.1/utils.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.1/utils.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.14/axes.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.14/axes.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.14/draw.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.14/draw.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.14/init.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.14/init.src.js -------------------------------------------------------------------------------- /docs/reference/libs/rglwidgetClass-1.3.14/rgl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/libs/rglwidgetClass-1.3.14/rgl.css -------------------------------------------------------------------------------- /docs/reference/matdiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matdiff.html -------------------------------------------------------------------------------- /docs/reference/matdiff.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matdiff.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/matlib-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matlib-package.html -------------------------------------------------------------------------------- /docs/reference/matlib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matlib.html -------------------------------------------------------------------------------- /docs/reference/matmult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matmult.html -------------------------------------------------------------------------------- /docs/reference/matmult.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matmult.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/matpower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matpower.html -------------------------------------------------------------------------------- /docs/reference/matpower.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matpower.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/matrix2latex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matrix2latex.html -------------------------------------------------------------------------------- /docs/reference/matsum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matsum.html -------------------------------------------------------------------------------- /docs/reference/matsum.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/matsum.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/minor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/minor.html -------------------------------------------------------------------------------- /docs/reference/mpower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/mpower.html -------------------------------------------------------------------------------- /docs/reference/newline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/newline.html -------------------------------------------------------------------------------- /docs/reference/overbrace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/overbrace.html -------------------------------------------------------------------------------- /docs/reference/overset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/overset.html -------------------------------------------------------------------------------- /docs/reference/partition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/partition.html -------------------------------------------------------------------------------- /docs/reference/partition.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/partition.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/plot.regvec3d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/plot.regvec3d-1.png -------------------------------------------------------------------------------- /docs/reference/plot.regvec3d-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/plot.regvec3d-2.png -------------------------------------------------------------------------------- /docs/reference/plot.regvec3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/plot.regvec3d.html -------------------------------------------------------------------------------- /docs/reference/plotEqn-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/plotEqn-1.png -------------------------------------------------------------------------------- /docs/reference/plotEqn-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/plotEqn-2.png -------------------------------------------------------------------------------- /docs/reference/plotEqn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/plotEqn.html -------------------------------------------------------------------------------- /docs/reference/plotEqn3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/plotEqn3d.html -------------------------------------------------------------------------------- /docs/reference/pointOnLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/pointOnLine.html -------------------------------------------------------------------------------- /docs/reference/powerMethod-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/powerMethod-1.png -------------------------------------------------------------------------------- /docs/reference/powerMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/powerMethod.html -------------------------------------------------------------------------------- /docs/reference/print.enhancedMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/print.enhancedMatrix.html -------------------------------------------------------------------------------- /docs/reference/print.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/print.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/print.regvec3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/print.regvec3d.html -------------------------------------------------------------------------------- /docs/reference/print.trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/print.trace.html -------------------------------------------------------------------------------- /docs/reference/printMatEqn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/printMatEqn.html -------------------------------------------------------------------------------- /docs/reference/printMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/printMatrix.html -------------------------------------------------------------------------------- /docs/reference/rbind.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/rbind.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/ref.html -------------------------------------------------------------------------------- /docs/reference/regvec3d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/regvec3d-1.png -------------------------------------------------------------------------------- /docs/reference/regvec3d.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/regvec3d.default.html -------------------------------------------------------------------------------- /docs/reference/regvec3d.formula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/regvec3d.formula.html -------------------------------------------------------------------------------- /docs/reference/regvec3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/regvec3d.html -------------------------------------------------------------------------------- /docs/reference/rowCofactors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/rowCofactors.html -------------------------------------------------------------------------------- /docs/reference/rowMinors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/rowMinors.html -------------------------------------------------------------------------------- /docs/reference/rowadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/rowadd.html -------------------------------------------------------------------------------- /docs/reference/rowmult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/rowmult.html -------------------------------------------------------------------------------- /docs/reference/rowswap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/rowswap.html -------------------------------------------------------------------------------- /docs/reference/showEig-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/showEig-1.png -------------------------------------------------------------------------------- /docs/reference/showEig-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/showEig-2.png -------------------------------------------------------------------------------- /docs/reference/showEig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/showEig.html -------------------------------------------------------------------------------- /docs/reference/showEqn-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/showEqn-1.png -------------------------------------------------------------------------------- /docs/reference/showEqn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/showEqn.html -------------------------------------------------------------------------------- /docs/reference/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/size.html -------------------------------------------------------------------------------- /docs/reference/solve.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/solve.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/summary.regvec3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/summary.regvec3d.html -------------------------------------------------------------------------------- /docs/reference/svdDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/svdDemo.html -------------------------------------------------------------------------------- /docs/reference/swp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/swp.html -------------------------------------------------------------------------------- /docs/reference/symMat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/symMat.html -------------------------------------------------------------------------------- /docs/reference/symbolicMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/symbolicMatrix.html -------------------------------------------------------------------------------- /docs/reference/t.latexMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/t.latexMatrix.html -------------------------------------------------------------------------------- /docs/reference/therapy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/therapy-1.png -------------------------------------------------------------------------------- /docs/reference/therapy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/therapy-2.png -------------------------------------------------------------------------------- /docs/reference/therapy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/therapy.html -------------------------------------------------------------------------------- /docs/reference/tr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/tr.html -------------------------------------------------------------------------------- /docs/reference/underbrace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/underbrace.html -------------------------------------------------------------------------------- /docs/reference/underset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/underset.html -------------------------------------------------------------------------------- /docs/reference/vandermode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/vandermode.html -------------------------------------------------------------------------------- /docs/reference/vec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/vec.html -------------------------------------------------------------------------------- /docs/reference/vectors-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/vectors-1.png -------------------------------------------------------------------------------- /docs/reference/vectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/vectors.html -------------------------------------------------------------------------------- /docs/reference/vectors3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/vectors3d.html -------------------------------------------------------------------------------- /docs/reference/vspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/vspace.html -------------------------------------------------------------------------------- /docs/reference/workers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/workers-1.png -------------------------------------------------------------------------------- /docs/reference/workers-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/workers-2.png -------------------------------------------------------------------------------- /docs/reference/workers-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/workers-3.png -------------------------------------------------------------------------------- /docs/reference/workers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/workers.html -------------------------------------------------------------------------------- /docs/reference/xprod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/reference/xprod.html -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/Det.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/Det.Rd -------------------------------------------------------------------------------- /man/Eigen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/Eigen.Rd -------------------------------------------------------------------------------- /man/Eqn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/Eqn.Rd -------------------------------------------------------------------------------- /man/Eqn_helpers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/Eqn_helpers.Rd -------------------------------------------------------------------------------- /man/Ginv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/Ginv.Rd -------------------------------------------------------------------------------- /man/GramSchmidt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/GramSchmidt.Rd -------------------------------------------------------------------------------- /man/Inverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/Inverse.Rd -------------------------------------------------------------------------------- /man/J.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/J.Rd -------------------------------------------------------------------------------- /man/LU.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/LU.Rd -------------------------------------------------------------------------------- /man/MoorePenrose.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/MoorePenrose.Rd -------------------------------------------------------------------------------- /man/Proj.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/Proj.Rd -------------------------------------------------------------------------------- /man/QR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/QR.Rd -------------------------------------------------------------------------------- /man/R.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/R.Rd -------------------------------------------------------------------------------- /man/SVD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/SVD.Rd -------------------------------------------------------------------------------- /man/Solve.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/Solve.Rd -------------------------------------------------------------------------------- /man/adjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/adjoint.Rd -------------------------------------------------------------------------------- /man/angle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/angle.Rd -------------------------------------------------------------------------------- /man/arc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/arc.Rd -------------------------------------------------------------------------------- /man/arrows3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/arrows3d.Rd -------------------------------------------------------------------------------- /man/buildTmat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/buildTmat.Rd -------------------------------------------------------------------------------- /man/cholesky.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/cholesky.Rd -------------------------------------------------------------------------------- /man/circle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/circle.Rd -------------------------------------------------------------------------------- /man/circle3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/circle3d.Rd -------------------------------------------------------------------------------- /man/class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/class.Rd -------------------------------------------------------------------------------- /man/cofactor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/cofactor.Rd -------------------------------------------------------------------------------- /man/coffee.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/coffee.Rd -------------------------------------------------------------------------------- /man/cone3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/cone3d.Rd -------------------------------------------------------------------------------- /man/corner.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/corner.Rd -------------------------------------------------------------------------------- /man/echelon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/echelon.Rd -------------------------------------------------------------------------------- /man/figures/CrossProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/figures/CrossProduct.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/matlib-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/figures/matlib-preview.png -------------------------------------------------------------------------------- /man/figures/symbMat-Lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/figures/symbMat-Lambda.png -------------------------------------------------------------------------------- /man/figures/symbMat-SVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/figures/symbMat-SVD.png -------------------------------------------------------------------------------- /man/figures/symbMat-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/figures/symbMat-x.png -------------------------------------------------------------------------------- /man/gaussianElimination.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/gaussianElimination.Rd -------------------------------------------------------------------------------- /man/getYmult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/getYmult.Rd -------------------------------------------------------------------------------- /man/gsorth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/gsorth.Rd -------------------------------------------------------------------------------- /man/is_square.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/is_square.Rd -------------------------------------------------------------------------------- /man/latexMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/latexMatrix.Rd -------------------------------------------------------------------------------- /man/latexMatrixOperations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/latexMatrixOperations.Rd -------------------------------------------------------------------------------- /man/len.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/len.Rd -------------------------------------------------------------------------------- /man/matlib-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/matlib-package.Rd -------------------------------------------------------------------------------- /man/matrix2latex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/matrix2latex.Rd -------------------------------------------------------------------------------- /man/minor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/minor.Rd -------------------------------------------------------------------------------- /man/mpower.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/mpower.Rd -------------------------------------------------------------------------------- /man/plot.regvec3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/plot.regvec3d.Rd -------------------------------------------------------------------------------- /man/plotEqn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/plotEqn.Rd -------------------------------------------------------------------------------- /man/plotEqn3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/plotEqn3d.Rd -------------------------------------------------------------------------------- /man/pointOnLine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/pointOnLine.Rd -------------------------------------------------------------------------------- /man/powerMethod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/powerMethod.Rd -------------------------------------------------------------------------------- /man/printMatEqn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/printMatEqn.Rd -------------------------------------------------------------------------------- /man/printMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/printMatrix.Rd -------------------------------------------------------------------------------- /man/regvec3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/regvec3d.Rd -------------------------------------------------------------------------------- /man/rowCofactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/rowCofactors.Rd -------------------------------------------------------------------------------- /man/rowMinors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/rowMinors.Rd -------------------------------------------------------------------------------- /man/rowadd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/rowadd.Rd -------------------------------------------------------------------------------- /man/rowmult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/rowmult.Rd -------------------------------------------------------------------------------- /man/rowswap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/rowswap.Rd -------------------------------------------------------------------------------- /man/showEig.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/showEig.Rd -------------------------------------------------------------------------------- /man/showEqn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/showEqn.Rd -------------------------------------------------------------------------------- /man/svdDemo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/svdDemo.Rd -------------------------------------------------------------------------------- /man/swp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/swp.Rd -------------------------------------------------------------------------------- /man/symMat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/symMat.Rd -------------------------------------------------------------------------------- /man/therapy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/therapy.Rd -------------------------------------------------------------------------------- /man/tr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/tr.Rd -------------------------------------------------------------------------------- /man/vandermode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/vandermode.Rd -------------------------------------------------------------------------------- /man/vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/vec.Rd -------------------------------------------------------------------------------- /man/vectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/vectors.Rd -------------------------------------------------------------------------------- /man/vectors3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/vectors3d.Rd -------------------------------------------------------------------------------- /man/workers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/workers.Rd -------------------------------------------------------------------------------- /man/xprod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/man/xprod.Rd -------------------------------------------------------------------------------- /old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/old/Makefile -------------------------------------------------------------------------------- /old/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/old/NEWS -------------------------------------------------------------------------------- /papers/matlib-useR2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/papers/matlib-useR2016.pdf -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/checks/DIDmultiplegtDYN/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/DIDmultiplegtDYN/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/DIDmultiplegtDYN/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/DIDmultiplegtDYN/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/ETRep/ETRep_1.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/ETRep_1.2.1.tar.gz -------------------------------------------------------------------------------- /revdep/checks/ETRep/new/ETRep.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/new/ETRep.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/ETRep/new/ETRep.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/new/ETRep.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/ETRep/new/ETRep.Rcheck/ETRep-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/new/ETRep.Rcheck/ETRep-Ex.R -------------------------------------------------------------------------------- /revdep/checks/ETRep/new/ETRep.Rcheck/ETRep-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/new/ETRep.Rcheck/ETRep-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/ETRep/new/ETRep.Rcheck/ETRep-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/new/ETRep.Rcheck/ETRep-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/ETRep/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/ETRep/old/ETRep.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/old/ETRep.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/ETRep/old/ETRep.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/old/ETRep.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/ETRep/old/ETRep.Rcheck/ETRep-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/old/ETRep.Rcheck/ETRep-Ex.R -------------------------------------------------------------------------------- /revdep/checks/ETRep/old/ETRep.Rcheck/ETRep-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/old/ETRep.Rcheck/ETRep-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/ETRep/old/ETRep.Rcheck/ETRep-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/old/ETRep.Rcheck/ETRep-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/ETRep/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/ETRep/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/IOLS/IOLS_0.1.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/IOLS_0.1.4.tar.gz -------------------------------------------------------------------------------- /revdep/checks/IOLS/new/IOLS.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/new/IOLS.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/IOLS/new/IOLS.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/new/IOLS.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/IOLS/new/IOLS.Rcheck/IOLS-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/new/IOLS.Rcheck/IOLS-Ex.R -------------------------------------------------------------------------------- /revdep/checks/IOLS/new/IOLS.Rcheck/IOLS-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/new/IOLS.Rcheck/IOLS-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/IOLS/new/IOLS.Rcheck/IOLS-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/new/IOLS.Rcheck/IOLS-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/IOLS/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/IOLS/old/IOLS.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/old/IOLS.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/IOLS/old/IOLS.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/old/IOLS.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/IOLS/old/IOLS.Rcheck/IOLS-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/old/IOLS.Rcheck/IOLS-Ex.R -------------------------------------------------------------------------------- /revdep/checks/IOLS/old/IOLS.Rcheck/IOLS-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/old/IOLS.Rcheck/IOLS-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/IOLS/old/IOLS.Rcheck/IOLS-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/old/IOLS.Rcheck/IOLS-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/IOLS/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/IOLS/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/MVSKmod/MVSKmod_0.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/MVSKmod/MVSKmod_0.1.0.tar.gz -------------------------------------------------------------------------------- /revdep/checks/MVSKmod/new/MVSKmod.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/MVSKmod/new/MVSKmod.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/MVSKmod/new/MVSKmod.Rcheck/MVSKmod-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/MVSKmod/new/MVSKmod.Rcheck/MVSKmod-Ex.R -------------------------------------------------------------------------------- /revdep/checks/MVSKmod/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/MVSKmod/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/MVSKmod/old/MVSKmod.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/MVSKmod/old/MVSKmod.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/MVSKmod/old/MVSKmod.Rcheck/MVSKmod-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/MVSKmod/old/MVSKmod.Rcheck/MVSKmod-Ex.R -------------------------------------------------------------------------------- /revdep/checks/MVSKmod/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/MVSKmod/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/RMCDA/RMCDA_0.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/RMCDA_0.3.tar.gz -------------------------------------------------------------------------------- /revdep/checks/RMCDA/new/RMCDA.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/new/RMCDA.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/RMCDA/new/RMCDA.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/new/RMCDA.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/RMCDA/new/RMCDA.Rcheck/RMCDA-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/new/RMCDA.Rcheck/RMCDA-Ex.R -------------------------------------------------------------------------------- /revdep/checks/RMCDA/new/RMCDA.Rcheck/RMCDA-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/new/RMCDA.Rcheck/RMCDA-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/RMCDA/new/RMCDA.Rcheck/RMCDA-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/new/RMCDA.Rcheck/RMCDA-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/RMCDA/new/RMCDA.Rcheck/tests/startup.Rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/new/RMCDA.Rcheck/tests/startup.Rs -------------------------------------------------------------------------------- /revdep/checks/RMCDA/new/RMCDA.Rcheck/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/new/RMCDA.Rcheck/tests/testthat.R -------------------------------------------------------------------------------- /revdep/checks/RMCDA/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/RMCDA/old/RMCDA.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/old/RMCDA.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/RMCDA/old/RMCDA.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/old/RMCDA.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/RMCDA/old/RMCDA.Rcheck/RMCDA-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/old/RMCDA.Rcheck/RMCDA-Ex.R -------------------------------------------------------------------------------- /revdep/checks/RMCDA/old/RMCDA.Rcheck/RMCDA-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/old/RMCDA.Rcheck/RMCDA-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/RMCDA/old/RMCDA.Rcheck/RMCDA-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/old/RMCDA.Rcheck/RMCDA-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/RMCDA/old/RMCDA.Rcheck/tests/startup.Rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/old/RMCDA.Rcheck/tests/startup.Rs -------------------------------------------------------------------------------- /revdep/checks/RMCDA/old/RMCDA.Rcheck/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/old/RMCDA.Rcheck/tests/testthat.R -------------------------------------------------------------------------------- /revdep/checks/RMCDA/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/RMCDA/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/SurprisalAnalysis/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/SurprisalAnalysis/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/SurprisalAnalysis/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/SurprisalAnalysis/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/VIRF/VIRF_0.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/VIRF_0.1.1.tar.gz -------------------------------------------------------------------------------- /revdep/checks/VIRF/new/VIRF.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/new/VIRF.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/VIRF/new/VIRF.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/new/VIRF.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/VIRF/new/VIRF.Rcheck/VIRF-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/new/VIRF.Rcheck/VIRF-Ex.R -------------------------------------------------------------------------------- /revdep/checks/VIRF/new/VIRF.Rcheck/VIRF-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/new/VIRF.Rcheck/VIRF-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/VIRF/new/VIRF.Rcheck/VIRF-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/new/VIRF.Rcheck/VIRF-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/VIRF/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/VIRF/old/VIRF.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/old/VIRF.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/VIRF/old/VIRF.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/old/VIRF.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/VIRF/old/VIRF.Rcheck/VIRF-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/old/VIRF.Rcheck/VIRF-Ex.R -------------------------------------------------------------------------------- /revdep/checks/VIRF/old/VIRF.Rcheck/VIRF-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/old/VIRF.Rcheck/VIRF-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/VIRF/old/VIRF.Rcheck/VIRF-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/old/VIRF.Rcheck/VIRF-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/VIRF/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/VIRF/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/biplotbootGUI/biplotbootGUI_1.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/biplotbootGUI/biplotbootGUI_1.3.tar.gz -------------------------------------------------------------------------------- /revdep/checks/biplotbootGUI/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/biplotbootGUI/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/biplotbootGUI/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/biplotbootGUI/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/dymo/dymo_1.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/dymo_1.1.0.tar.gz -------------------------------------------------------------------------------- /revdep/checks/dymo/new/dymo.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/new/dymo.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/dymo/new/dymo.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/new/dymo.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/dymo/new/dymo.Rcheck/dymo-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/new/dymo.Rcheck/dymo-Ex.R -------------------------------------------------------------------------------- /revdep/checks/dymo/new/dymo.Rcheck/dymo-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/new/dymo.Rcheck/dymo-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/dymo/new/dymo.Rcheck/dymo-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/new/dymo.Rcheck/dymo-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/dymo/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/dymo/old/dymo.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/old/dymo.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/dymo/old/dymo.Rcheck/00install.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/old/dymo.Rcheck/00install.out -------------------------------------------------------------------------------- /revdep/checks/dymo/old/dymo.Rcheck/dymo-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/old/dymo.Rcheck/dymo-Ex.R -------------------------------------------------------------------------------- /revdep/checks/dymo/old/dymo.Rcheck/dymo-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/old/dymo.Rcheck/dymo-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/dymo/old/dymo.Rcheck/dymo-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/old/dymo.Rcheck/dymo-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/dymo/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/dymo/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/hyperoverlap/hyperoverlap_1.1.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/hyperoverlap/hyperoverlap_1.1.3.tar.gz -------------------------------------------------------------------------------- /revdep/checks/hyperoverlap/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/hyperoverlap/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/hyperoverlap/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/hyperoverlap/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/libraries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/libraries.csv -------------------------------------------------------------------------------- /revdep/checks/panelSUR/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/panelSUR/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/panelSUR/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/panelSUR/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/panelSUR/panelSUR_0.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/panelSUR/panelSUR_0.1.0.tar.gz -------------------------------------------------------------------------------- /revdep/checks/smallstuff/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/smallstuff/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/smallstuff/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/smallstuff/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/smallstuff/smallstuff_1.0.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/checks/smallstuff/smallstuff_1.0.5.tar.gz -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/data.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/data.sqlite -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/INDEX -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: broom authors 3 | -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/MD5 -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/Meta/features.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/Meta/features.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/Meta/vignette.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/Meta/vignette.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/NEWS.md -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/R/broom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/R/broom -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/R/broom.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/R/broom.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/R/broom.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/R/broom.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/R/sysdata.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/R/sysdata.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/R/sysdata.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/R/sysdata.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/WORDLIST -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/bootstrapping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/bootstrapping.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/bootstrapping.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/bootstrapping.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/broom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/broom.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/broom.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/broom.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/broom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/broom.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/broom_and_dplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/broom_and_dplyr.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/kmeans.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/kmeans.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/doc/kmeans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/doc/kmeans.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/help/broom.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/help/broom.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/help/broom.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/help/broom.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/help/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/help/figures/logo.png -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/html/00Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/html/00Index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/broom/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/broom/html/R.css -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/CITATION -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/INDEX -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: ggplot2 core developer team 3 | -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/MD5 -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/Meta/data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/Meta/data.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/Meta/features.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/Meta/features.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/Meta/vignette.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/Meta/vignette.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/NEWS.md -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/R/ggplot2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/R/ggplot2 -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/R/ggplot2.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/R/ggplot2.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/R/ggplot2.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/R/ggplot2.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/data/Rdata.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/data/Rdata.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/data/Rdata.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/data/Rdata.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/data/Rdata.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/data/Rdata.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/doc/ggplot2-specs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/doc/ggplot2-specs.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/doc/ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/doc/ggplot2.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/doc/ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/doc/ggplot2.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/doc/ggplot2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/doc/ggplot2.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/doc/index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/help/ggplot2.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/help/ggplot2.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/help/ggplot2.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/help/ggplot2.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/html/00Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/html/00Index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/ggplot2/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/ggplot2/html/R.css -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/INDEX -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: magrittr authors 3 | -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/MD5 -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/Meta/features.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/Meta/features.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/Meta/vignette.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/Meta/vignette.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/R/magrittr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/R/magrittr -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/R/magrittr.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/R/magrittr.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/R/magrittr.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/R/magrittr.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/doc/index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/doc/magrittr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/doc/magrittr.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/doc/magrittr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/doc/magrittr.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/doc/magrittr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/doc/magrittr.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/doc/tradeoffs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/doc/tradeoffs.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/doc/tradeoffs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/doc/tradeoffs.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/html/R.css -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/logo-hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/logo-hex.png -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/logo-hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/logo-hex.svg -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/logo.png -------------------------------------------------------------------------------- /revdep/library/matlib/new/magrittr/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/magrittr/logo.svg -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/INDEX -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/Meta/data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/Meta/data.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/Meta/features.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/Meta/features.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/NEWS.md -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/R/matlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/R/matlib -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/R/matlib.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/R/matlib.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/R/matlib.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/R/matlib.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/WORDLIST -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/data/Rdata.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/data/Rdata.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/data/Rdata.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/data/Rdata.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/data/Rdata.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/data/Rdata.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/help/matlib.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/help/matlib.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/help/matlib.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/help/matlib.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/html/00Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/html/00Index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/matlib/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/matlib/html/R.css -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/INDEX -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: pillar authors 3 | -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/MD5 -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/Meta/features.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/Meta/features.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/Meta/vignette.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/Meta/vignette.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/NEWS.md -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/R/pillar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/R/pillar -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/R/pillar.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/R/pillar.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/R/pillar.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/R/pillar.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/WORDLIST -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/debugme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/debugme.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/debugme.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/debugme.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/debugme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/debugme.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/digits.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/digits.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/digits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/digits.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/extending.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/extending.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/extending.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/extending.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/extending.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/numbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/numbers.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/numbers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/numbers.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/numbers.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/printing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/printing.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/printing.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/printing.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/doc/printing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/doc/printing.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/help/pillar.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/help/pillar.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/help/pillar.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/help/pillar.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/html/00Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/html/00Index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/pillar/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/pillar/html/R.css -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/CITATION -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/COPYING -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/INDEX -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/MD5 -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/NEWS.md -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/NOTICE -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/R/rmarkdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/R/rmarkdown -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/R/rmarkdown.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/R/rmarkdown.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/R/rmarkdown.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/R/rmarkdown.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/doc/index.html -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/doc/rmarkdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/doc/rmarkdown.R -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/new/rmarkdown/html/R.css -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/rmd/fragment/default.tex: -------------------------------------------------------------------------------- 1 | $body$ 2 | -------------------------------------------------------------------------------- /revdep/library/matlib/new/rmarkdown/rmd/h/shiny-header.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/INDEX -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/MD5 -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/Meta/data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/Meta/data.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/Meta/features.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/Meta/features.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/Meta/vignette.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/Meta/vignette.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/NEWS.md -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/R/matlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/R/matlib -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/R/matlib.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/R/matlib.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/R/matlib.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/R/matlib.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/WORDLIST -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/data/Rdata.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/data/Rdata.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/data/Rdata.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/data/Rdata.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/data/Rdata.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/data/Rdata.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/data-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/data-beta.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/data-beta.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/data-beta.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/data-beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/data-beta.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/det-ex1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/det-ex1.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/det-ex1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/det-ex1.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/det-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/det-ex1.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/det-ex2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/det-ex2.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/det-ex2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/det-ex2.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/det-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/det-ex2.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/eigen-ex1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/eigen-ex1.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/eigen-ex1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/eigen-ex1.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/eigen-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/eigen-ex1.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/eigen-ex2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/eigen-ex2.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/eigen-ex2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/eigen-ex2.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/eigen-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/eigen-ex2.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/ginv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/ginv.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/ginv.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/ginv.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/ginv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/ginv.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/gramreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/gramreg.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/gramreg.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/gramreg.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/gramreg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/gramreg.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/index.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-3d.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-3d.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-3d.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-3d.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-ex1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-ex1.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-ex1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-ex1.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-ex1.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-ex2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-ex2.R -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-ex2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-ex2.Rmd -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/doc/inv-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/doc/inv-ex2.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/help/matlib.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/help/matlib.rdb -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/help/matlib.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/help/matlib.rdx -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/html/00Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/html/00Index.html -------------------------------------------------------------------------------- /revdep/library/matlib/old/matlib/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/library/matlib/old/matlib/html/R.css -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /vignettes/CanvasMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/CanvasMatrix.js -------------------------------------------------------------------------------- /vignettes/a1-det-ex1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a1-det-ex1.Rmd -------------------------------------------------------------------------------- /vignettes/a2-det-ex2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a2-det-ex2.Rmd -------------------------------------------------------------------------------- /vignettes/a3-inv-ex1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a3-inv-ex1.Rmd -------------------------------------------------------------------------------- /vignettes/a4-inv-ex2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a4-inv-ex2.Rmd -------------------------------------------------------------------------------- /vignettes/a5-ginv.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a5-ginv.Rmd -------------------------------------------------------------------------------- /vignettes/a6-inv-3d.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a6-inv-3d.Rmd -------------------------------------------------------------------------------- /vignettes/a7-eigen-ex1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a7-eigen-ex1.Rmd -------------------------------------------------------------------------------- /vignettes/a8-eigen-ex2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a8-eigen-ex2.Rmd -------------------------------------------------------------------------------- /vignettes/a9-linear-equations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/a9-linear-equations.Rmd -------------------------------------------------------------------------------- /vignettes/aA-gramreg.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/aA-gramreg.Rmd -------------------------------------------------------------------------------- /vignettes/aB-data-beta.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/aB-data-beta.Rmd -------------------------------------------------------------------------------- /vignettes/latex-equations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/latex-equations.Rmd -------------------------------------------------------------------------------- /vignettes/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly/matlib/HEAD/vignettes/references.bib --------------------------------------------------------------------------------