Skip to content
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

Update cachematrix.R #5673

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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: 23 additions & 3 deletions cachematrix.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,34 @@
## functions do

## Write a short comment describing this function
# This function wiil cache the inverse matrix, setinverse() will cache the
# inverse and getinverse() will return the cached matrix

makeCacheMatrix <- function(x = matrix()) {

m <- NULL
set <- function(y) {
x <<- y
m <<- NULL
}
get <- function () x
setinverse <- function(inv) inv_matrix <<- inv
getinverse <- function() inv_matrix
list(set = set, get = get, setinverse = setinverse, getinverse = getinverse)
}


## Write a short comment describing this function
## Write a short comment describing this function\
# The function will get the inverse matrix from x, checks if the cache already
# exist, if not it will get the matrix and solve using solve() function

cacheSolve <- function(x, ...) {
## Return a matrix that is the inverse of 'x'
m <- x$getinverse()
if (!is.null(m)) {
message("Getting cached data")
return(m)
}
data <- x$get()
m <- solve(data, ...)
x$setinverse(m)
m
}