Skip to content

Update cachematrix.R #5798

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .Rhistory
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## This function creates a special "matrix" object that can cache its inverse.
makeCacheMatrix <- function(x = matrix()) {
inv <- NULL # initialize inverse as NULL
set <- function(y) {
x <<- y # assign new matrix value
inv <<- NULL # reset inverse cache
}
get <- function() x
setinverse <- function(inverse) inv <<- inverse
getinverse <- function() inv
list(set = set, get = get,
setinverse = setinverse,
getinverse = getinverse)
}
## This function computes the inverse of the special "matrix" returned by makeCacheMatrix above.
cacheSolve <- function(x, ...) {
inv <- x$getinverse()
if(!is.null(inv)) {
message("getting cached data")
return(inv) # return cached inverse
}
data <- x$get()
inv <- solve(data, ...) # compute inverse
x$setinverse(inv) # cache the inverse
inv
}
32 changes: 22 additions & 10 deletions cachematrix.R
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
## Put comments here that give an overall description of what your
## functions do

## Write a short comment describing this function

## This function creates a special "matrix" object that can cache its inverse.
makeCacheMatrix <- function(x = matrix()) {

inv <- NULL # initialize inverse as NULL
set <- function(y) {
x <<- y # assign new matrix value
inv <<- NULL # reset inverse cache
}
get <- function() x
setinverse <- function(inverse) inv <<- inverse
getinverse <- function() inv
list(set = set, get = get,
setinverse = setinverse,
getinverse = getinverse)
}


## Write a short comment describing this function

## This function computes the inverse of the special "matrix" returned by makeCacheMatrix above.
cacheSolve <- function(x, ...) {
## Return a matrix that is the inverse of 'x'
inv <- x$getinverse()
if(!is.null(inv)) {
message("getting cached data")
return(inv) # return cached inverse
}
data <- x$get()
inv <- solve(data, ...) # compute inverse
x$setinverse(inv) # cache the inverse
inv
}