From 515af0b9c7fc35fdfe727092776fa0561f404c67 Mon Sep 17 00:00:00 2001 From: Rainer Wolf Date: Mon, 22 Jun 2015 01:27:18 +0200 Subject: [PATCH] Solution, 1st attempt --- cachematrix.R | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/cachematrix.R b/cachematrix.R index a50be65aa44..1fb42cbdb77 100644 --- a/cachematrix.R +++ b/cachematrix.R @@ -1,15 +1,36 @@ ## Put comments here that give an overall description of what your ## functions do -## Write a short comment describing this function +## makeCacheMatrix creates a special matrix object that can cache its inverse 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 +## cacheSolve computes the inverse of the special matrix object that is returned +## by makeCacheMatrix. If the inverse has already been computed on this +## particular matrix object, the inverse won't be recalculated; instead, it +## is retrieved from the cache. cacheSolve <- function(x, ...) { ## Return a matrix that is the inverse of 'x' + i <- x$getinverse() + if(!is.null(i)) { + message("getting cached data") + return(i) + } + data <- x$get() + i <- solve(data, ...) + x$setinverse(i) + i }