forked from rdpeng/ProgrammingAssignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachematrix.R
55 lines (43 loc) · 1.35 KB
/
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
49
50
51
52
53
54
55
## Put comments here that give an overall description of what your
## functions do
## Write a short comment describing this function
makeCacheMatrix <- function(x = matrix()) {
inversion <- NULL
originalMatrix <- x ## used to determine if matrix has been changed
## return matrix
get <- function() x
## set matrix
set <- function(y) {
x <<- y
if (!identical(y,originalMatrix)) {
message("new matrix assined. Inversion is reset to NULL")
inversion <<- NULL
} else {
message("new matrix is identical to *original* (may or may not be the previous) matrix")
message("Inversion matrix is NOT reset to null")
}
}
## set matrix's inversion
setInversion <- function(matrix) inversion <<- matrix
## return matrix's inversion
getInversion <- function() inversion
list(set = set,
get = get,
getInversion = getInversion,
setInversion = setInversion
)
}
## Write a short comment describing this function
cacheSolve <- function(x, ...) {
## Return a matrix that is the inverse of 'x'
##if inversion is NOT NULL, return cached inversion
if (!is.null(x$getInversion())) {
message("returning cached inversion")
return(x$getInversion())
}
##otherwise compute inversion and return it
matrix <- x$get()
inv <- solve(matrix)
x$setInversion(inv)
inv
}