Skip to content

Commit da28697

Browse files
committed
more spellcheck
1 parent a661ef9 commit da28697

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

R/Eqn.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Eqn_newline <- function()' \\\\ \n'
162162

163163
#' Eqn_text Include literal string in equations
164164
#'
165-
#' \code{Eqn_text()} inserts a literla string to be rendered in a text font in an equation
165+
#' \code{Eqn_text()} inserts a literal string to be rendered in a text font in an equation
166166
#'
167167
#' @param text argument to be used within \code{\\text{}}
168168
#' @rdname Eqn
@@ -175,7 +175,7 @@ Eqn_text <- function(text) sprintf("\\text{%s}", text)
175175
#' \code{=} signs
176176
#' Input to \code{lhs}, \code{rhs} can be a
177177
#' numeric to increase the size of the space or a
178-
#' character vector to be passed to the LaTex macro \code{\\hspace{}}.
178+
#' character vector to be passed to the LaTeX macro \code{\\hspace{}}.
179179
#'
180180
#' @param lhs spacing size. Can be a number between -1 and 6. -1 provides negative
181181
#' spaces and 0 gives no spacing. Input can also be a character vector, which will be

R/latexMatrix.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ as.double.latexMatrix <- function(x, locals=list(), ...){
727727
}
728728

729729
#' @param deparse.level to match the generic \code{\link{rbind}()}
730-
#' and \code{\link{cbind}()} funcctions; ignored
730+
#' and \code{\link{cbind}()} functions; ignored
731731
#' @rdname latexMatrix
732732
#' @export
733733
cbind.latexMatrix <- function(..., deparse.level){

inst/WORDLIST

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
adjoint
22
Adjoint
33
Beaton
4+
behaviour
5+
bmatrix
46
buglet
57
carData
68
Cheung
@@ -17,6 +19,7 @@ Dempster
1719
det
1820
diag
1921
diagonalizes
22+
dmurdoch
2023
eigen
2124
Eigen
2225
eigenstructure
@@ -35,6 +38,7 @@ inv
3538
Jarecki
3639
kronecker
3740
Lagrida
41+
latexMatrix
3842
Lundberg
3943
macOS
4044
mathbf
@@ -43,6 +47,7 @@ MathJax
4347
MathType
4448
matrixkit
4549
mikewlcheung
50+
norglwidget
4651
orthogonalization
4752
Orthogonalization
4853
orthonormal
@@ -54,6 +59,7 @@ Penrose
5459
pkgdown
5560
plotEqn
5661
pmatrix
62+
pre
5763
Proj
5864
programmatically
5965
pseudoinverse

man/Eqn.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/latexMatrix.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/eigen-ex1.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ elements in `values`.
4545
The following steps illustrate the main properties of eigenvalues and eigenvectors. We use the notation
4646
$A = V' \Lambda V$ to express the decomposition of the matrix $A$, where $V$ is the matrix of
4747
eigenvectors and $\Lambda = diag(\lambda_1, \lambda_2, \dots, \lambda_p)$ is the diagonal matrix
48-
composed of the ordered eivenvalues, $\lambda_1 \ge \lambda_2 \ge \dots \lambda_p$.
48+
composed of the ordered eigenvalues, $\lambda_1 \ge \lambda_2 \ge \dots \lambda_p$.
4949

5050
0. Orthogonality: Eigenvectors are always orthogonal, $V' V = I$. `zapsmall()` is handy for cleaning up tiny values.
5151
```{r orthog}

0 commit comments

Comments
 (0)