diff --git a/cachematrix.R b/cachematrix.R index a50be65aa44..9d9a5c1e914 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 +## Return a matrix container object that can cache its inverse. +## Use with a caching function. makeCacheMatrix <- function(x = matrix()) { - + i <- NULL + set <- function(y) { + x <<- y + i <<- NULL + } + get <- function() x + setinverse <- function(inverse) i <<- inverse + getinverse <- function() i + list(set = set, get = get, + setinverse = setinverse, + getinverse = getinverse) } -## Write a short comment describing this function +## Return a matrix inverse from a matrix container. +## Function caches the inverse in the container. cacheSolve <- function(x, ...) { - ## Return a matrix that is the inverse of 'x' + i <- x$getinverse() + if(!is.null(i)) { + message("getting cached inverse") + return(i) + } + data <- x$get() + i <- solve(data) + x$setinverse(i) + i }