Computes the inverse of a numeric
or character
matrix.
mxinv(x)
numeric
or character
matrix.
numeric
or character
matrix.
Guidotti E (2022). "calculus: High-Dimensional Numerical and Symbolic Calculus in R." Journal of Statistical Software, 104(5), 1-37. doi:10.18637/jss.v104.i05
### numeric matrix
x <- matrix(1:4, nrow = 2, byrow = TRUE)
mxinv(x)
#> [,1] [,2]
#> [1,] -2.0 1.0
#> [2,] 1.5 -0.5
### symbolic matrix
x <- matrix(letters[1:4], nrow = 2, byrow = TRUE)
mxinv(x)
#> [,1] [,2]
#> [1,] "((d)) / ((a)*((d)) + -(c)*((b)))" "-((b)) / ((a)*((d)) + -(c)*((b)))"
#> [2,] "-((c)) / ((a)*((d)) + -(c)*((b)))" "((a)) / ((a)*((d)) + -(c)*((b)))"