diff --git a/cachematrix.R b/cachematrix.R index a50be65aa44..b82549a93d3 100644 --- a/cachematrix.R +++ b/cachematrix.R @@ -1,15 +1,32 @@ -## Put comments here that give an overall description of what your -## functions do - -## Write a short comment describing this function +## These functions calculate and cache the inverse of a matrix +## This function creates a special "matrix" object that can cache its inverse. makeCacheMatrix <- function(x = matrix()) { - + inverse <- NULL + set <- function(y) { + x <<- y + inverse <<- NULL + } + get <- function() x + setinverse <- function(i) inverse <<- i + getinverse <- function() inverse + list(set = set, get = get, + getinverse = getinverse, + setinverse = setinverse) } - -## Write a short comment describing this function - +## This function computes the inverse of the special "matrix" returned by +## `makeCacheMatrix` above. If the inverse has already been calculated +## (and the matrix has not changed), then `cacheSolve` should retrieve the +## inverse from the cache. cacheSolve <- function(x, ...) { - ## Return a matrix that is the inverse of 'x' + inverse <- x$getinverse() + if (!is.null(inverse)) { + message("getting cached data") + return(inverse) + } + data <- x$get() + inverse <- solve(data, ...) + x$setinverse(inverse) + inverse }