Skip to content

completed function #5784

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
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: 29 additions & 10 deletions cachematrix.R
Original file line number Diff line number Diff line change
@@ -1,15 +1,34 @@
## Put comments here that give an overall description of what your
## functions do
# This script does 2 things:
# 1. it stores data into an object and initializes a "storage space" for a computation performed on said data
# 2. it performs computation on the vector, returns an answer, and stores the answer in the storage space

## Write a short comment describing this function

makeCacheMatrix <- function(x = matrix()) {
################################################################################
# Assignment 2
################################################################################

makeCacheMatrix <- function(x = matrix()) { # The function where data is stored and "stotage" or cache is initialized
inv <- NULL
set <- function(y) {
x <<- y
inv <<- NULL
}
get <- function() x
setinv <- function(inverse) inv <<- inverse
getinv <- function() inv
list(set = set, get = get,
setinv = setinv,
getinv = getinv)
}


## Write a short comment describing this function

cacheSolve <- function(x, ...) {
## Return a matrix that is the inverse of 'x'
cacheSolve <- function(x, ...) { # A function that solves the inverse of a matrix 'x', the inverse is stored in makeCasheMatrix for fast retrival
inv <- x$getinv()
if(!is.null(inv)) {
message("getting cached inverse")
return(inv)
}
data <- x$get()
inv <- solve(data, ...)
x$setinv(inv)
inv
}