forked from rdpeng/ProgrammingAssignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachematrix.R
33 lines (30 loc) · 902 Bytes
/
cachematrix.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
##makeCacheMatrix will create the special object that can be used by cacheSolve
##cacheSolve will verify if the inverse is already cached and return it
##if it is not cached, it will calculate it and cache it for next calls
##
##
##create the special object that has 4 functions
makeCacheMatrix <- function(x = matrix()) {
inv <- NULL
set <- function(y){
x <<-y
inv <<-NULL
}
get <- function() x
setinv <- function (inverseMatrix) inv <<-inverseMatrix
getinv <- function() inv
list (set = set, get = get, setinv = setinv, getinv=getinv)
}
## calculate and cache the inverse if it is not already cached
##return the cahced if it is present
cacheSolve <- function(x, ...) {
## Return a matrix that is the inverse of 'x'
inv <- x$getinv()
if (!is.null(inv)){
message("using cached matrix")
return (inv)
}
inv <- solve(x$get(),...)
x$setinv(inv)
inv
}