From 275443b453dac967b9210e47f4b88db1aeaeda2f Mon Sep 17 00:00:00 2001 From: John Gill Date: Sun, 22 Oct 2017 17:48:46 -0500 Subject: [PATCH] Creates a function that caches the inverse of a matrix Solves programming assignment 2 by creating a pair of functions that work together to calculate the inverse of a matrix and cache the result for future use. --- cachematrix.R | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/cachematrix.R b/cachematrix.R index a50be65aa44..bc2de4cd985 100644 --- a/cachematrix.R +++ b/cachematrix.R @@ -1,15 +1,33 @@ -## Put comments here that give an overall description of what your -## functions do +## A pair of functions that calculate the inverse of a matix +## and cache the result. -## Write a short comment describing this function +## Creates a "matrix" object that can cache it's 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 +## Computes inverse of "matrix" object and caches result 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 }