forked from rdpeng/ProgrammingAssignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachematrix.R
48 lines (36 loc) · 986 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
## Caching matrix
makeCacheMatrix <- function(m = matrix()) {
cachematrix <- NULL
set <- function( matrix ) {
m <<- matrix
cachematrix <<- NULL
}
get <- function() {
m
}
setInverse <- function(inverse) {
cachematrix <<- inverse
}
getInverse <- function() {
cachematrix
}
# Return the list of methods
list(set = set, get = get,
setInverse = setInverse,
getInverse = getInverse)
}
## Compute the inverse if not present in the Caching matrix
cacheSolve <- function(x, ...) {
inversematrix <- x$getInverse()
if( !is.null(inversematrix) ) {
message("getting cached data")
return(inversematrix)
}
# Otherwise
data <- x$get()
# Calculate the inverse using matrix multiplication
inversematrix <- solve(data)
# Set the inverse to the object
x$setInverse(inversematrix)
inversematrix
}