forked from rdpeng/ProgrammingAssignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachematrix.R
56 lines (51 loc) · 1.95 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
## makeCacheMatrix and cacheSolve demonstrate the usage of lexical scoping
## for caching values, which are expensive to calculate.
## makeCacheMatrix creates an object that contains a matrix and its inverse
## and provides getter and setter functions to access the data.
## cacheSolve takes the object created by makeCacheMatrix and either takes
## the inverse of the matrix from cache or calculates it.
## makeCacheMatrix takes a matrix as argument. It creates variables
## to store the data and the inverse in its closure. It provides
## getter and setter functions to access the data inside the object.
## It returns a list with the access functions which stores the
## data in its environment.
makeCacheMatrix <- function(x = matrix()) {
inverse <- NULL
## Sets a new value for the matrix and sets the inverse to NULL
setmatrix <- function(m) {
x <<- m
inverse <<- NULL
}
getmatrix <- function()
x
setinverse <- function(inv)
inverse <<- inv
getinverse <- function()
inverse
##Returns a list with the getter and setter functions
list(
set = setmatrix, get = getmatrix,
setinverse = setinverse,
getinverse = getinverse
)
}
## Cachesolve takes a list created with makeCacheMatrix as an argument.
## It checks if makeCacheMatrix already contains the inverse of the
## contained matrix. If the inverse exists it is returned. Otherwise,
## the inverse is calculated, set in the object made by makeCacheMatrix
## and the inverse is returned.
cacheSolve <- function(x, ...) {
## Loads the inverse from the cache
inverse <- x$getinverse()
## If inverse is in cache, return the value
if (!is.null(inverse)) {
message("getting cached data")
return(inverse)
}
## Take the matrix data and calculate the inverse
data <- x$get()
inverse <- solve(data)
## Set the inverse to the cache for further usage
x$setinverse(inverse)
inverse
}