forked from rdpeng/ProgrammingAssignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachematrix.R
72 lines (56 loc) · 1.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
## makeCacheMatrix creates a cached environment to store
## the matrix, its inverse, and functions for setting/getting
## Used in conjunction with cacheSolve.
makeCacheMatrix <- function(x = matrix()) {
# Initialize imatrix in an outside scope
imatrix <- NULL
# Create the generic settor that accesses an alternate environment
set <- function(y) {
x <<- y
imatrix <<- NULL
}
# Generic gettor.
get <- function() x
# Generic set/get for the inverse matrix.
setmatrixinv <- function(matrix.inv) imatrix <<- matrix.inv
getmatrixinv <- function() imatrix
#Return a list of functions for working with the cache
return(list(set = set, get = get,
setmatrixinv = setmatrixinv,
getmatrixinv = getmatrixinv))
}
## Given an environment from makeCacheMatrix,
## solve the matrix and cache the results.
## NOTE: This assignment assumes the provided matrix is always invertable.
cacheSolve <- function(x, ...) {
# Return the cached solved matrix,
# if available
m <- x$getmatrixinv()
if(!is.null(m)) {
message("getting cached data")
return(m)
}
# Otherwise, retrieve the original matrix
# Then solve, cache, and return
data <- x$get()
m <- solve(data, ...)
x$setmatrixinv(m)
return(m)
}
#Example Execution
# First, create the matrix cache:
q<-makeCacheMatrix(matrix(c(0,1,2,0),nrow=2))
# Then call the first time, normal executino time
cacheSolve(q)
# Finally, call a second time.
# 'getting cached data' should be printed!
cacheSolve(q)
# INPUT:
# [,1] [,2]
# [1,] 0.0 1
# [2,] 2.0 0
#
# EXPECTED OUTPUT:
# [,1] [,2]
# [1,] 0.0 1
# [2,] 0.5 0