inverse {matrixcalc} | R Documentation |
This function returns the inverse of a square matrix computed using the R function solve.
inverse(x)
x |
a square numeric matrix |
A matrix.
Frederick Novomestky fnovomes@poly.edu
A <- matrix( c ( 1, 2, 2, 1 ), nrow=2, byrow=TRUE) invA <- inverse( A )