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 #3

Closed
wants to merge 1 commit into from
Closed
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
39 changes: 32 additions & 7 deletions cachematrix.R
Original file line number Diff line number Diff line change
@@ -1,15 +1,40 @@
## Put comments here that give an overall description of what your
## functions do

## Write a short comment describing this function
## makeCacheMatrix and cacheSolve functions combined provide a
## feature to create square invertible matrix that caches its inverse
## for time efficient repeated invocation of solve()

## makeCacheMatrix creates a special matrix that
## stores the matrix along with its inverse and provides
## getters and setters to access those.
## The inverse is set to NULL during the construction for efficiency.
makeCacheMatrix <- function(x = matrix()) {

inv <- NULL
set <- function(y) {
x <<- y
inv <<- NULL
}

get <- function() x
setinv <- function(m.inv) inv <<- m.inv
getinv <- function() inv
list(set = set, get = get,
setinv = setinv,
getinv = getinv)
}


## Write a short comment describing this function

## calculates the inverse of a matrix
## Assumes that x is an invertible square matrix
## First invocation caches the inverse returned by the solve(...) and the
## subsequent call returns it straight from the cache
cacheSolve <- function(x, ...) {
## Return a matrix that is the inverse of 'x'
m <- x$getinv()
if(!is.null(m)) {
message("getting cached data")
return(m)
}
data <- x$get()
m <- solve(data, ...)
x$setinv(m)
m
}