From 8055cfd27ff028e070962ff458530b578b78de8c Mon Sep 17 00:00:00 2001 From: Oleg Atamanenko Date: Mon, 25 Jan 2016 00:36:32 -0500 Subject: [PATCH] Implemented cache matrix assignment --- cachematrix.R | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/cachematrix.R b/cachematrix.R index a50be65aa44..e7da70b8a5f 100644 --- a/cachematrix.R +++ b/cachematrix.R @@ -1,15 +1,37 @@ -## Put comments here that give an overall description of what your -## functions do - -## Write a short comment describing this function +## Matrix inversion is usually a costly computation and there may be some +## benefit to caching the inverse of a matrix rather than compute it repeatedly +## (there are also alternatives to matrix inversion that we will not discuss +## here). +## Create a special "matrix" object that can cache its inverse. makeCacheMatrix <- function(x = matrix()) { - + m <- NULL + set <- function(y) { + x <<- y + m <<- NULL + } + get <- function() x + setsolve <- function(solve) m <<- solve + getsolve <- function() m + list(set = set, get = get, + setsolve = setsolve, + getsolve = getsolve) } -## Write a short comment describing this function - +## Compute the inverse of the special "matrix" returned by makeCacheMatrix +## above. If the inverse has already been calculated (and the matrix has not +## changed), then the cachesolve should retrieve the inverse from the cache. +## Assumption: provided matrix is invertible. cacheSolve <- function(x, ...) { ## Return a matrix that is the inverse of 'x' + m <- x$getsolve() + if(!is.null(m)) { + message("getting cached data") + return(m) + } + data <- x$get() + m <- solve(data, ...) + x$setsolve(m) + m }