Skip to content

Instantly share code, notes, and snippets.

@thangarajan8
Last active August 29, 2015 14:04
Show Gist options
  • Save thangarajan8/e145593f616ac85d4b51 to your computer and use it in GitHub Desktop.
Save thangarajan8/e145593f616ac85d4b51 to your computer and use it in GitHub Desktop.
cacheSolve <- function(x, ...) {
s <- x$getsolve()
if(!is.null(s)) {
message("getting cached data")
return(s)
}
data <- x$get()
s <- solve(data, ...)
x$setsolve(s)
s
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment