Matrix inversion is usually a costly computation and there may be some benefit to caching the inverse of a matrix rather than computing it repeatedly.
There are two functions:
makeCacheMatrix: This function creates a special "matrix" object that can cache its inverse.cacheSolve: This function computes the inverse of the special "matrix" returned bymakeCacheMatrixabove. If the inverse has already been calculated (and the matrix has not changed), thencacheSolvewill retrieve the inverse from the cache.