forked from rdpeng/ProgrammingAssignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachematrix.R
38 lines (33 loc) · 1.08 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
## Put comments here that give an overall description of what your
## functions do
## Write a short comment describing this function
# this funtion creates a list containing functions to
# set the value of the matrix: set()
# get the value of the matrix: get()
# set the value of inverse of the matrix: setinverse()
# get the value of inverse of the matrix: getinverse()
makeCacheMatrix <- function(x = matrix()) {
inv_matrix <- NULL
set <- function(y) {
x <<- y
inv_matrix <<- NULL
}
get <- function() x
setinverse <- function(inverse) inv_matrix <<- inverse
getinverse <- function() inv_matrix
list(set=set, get=get, setinverse=setinverse, getinverse=getinverse)
}
## Write a short comment describing this function
#retuen inverse of the matrix, and caches it for later use
cacheSolve <- function(x, ...) {
## Return a matrix that is the inverse of 'x'
inv_matrix <- x$getinverse()
if(!is.null(inv_matrix)) {
message("getting cached data.")
return(inv_matrix)
}
matrix <- x$get()
inv_matrix <- solve(matrix)
x$setinverse(inv_matrix)
inv_matrix
}