forked from rdpeng/ProgrammingAssignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachematrix.R
39 lines (30 loc) · 886 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
## Put comments here that give an overall description of what your
## functions do
# 1. getmatrix - gets the matrix
# 2. setmatrix - sets the matrix
# 3. setinverse - sets the inverse
# 4. getinverse - gets the inverse
## Write a short comment describing this function
## makeCacheMatrix - returns a list of functions 1,2,3,4
makeCacheMatrix <- function(x = matrix()) {
inv = NULL
setmatrix = function(y) {
x <<- y
inv <<- NULL
}
getmatrix = function() x
setinverse = function(inverse) inv <<- inverse
getinverse = function() inv
list(setmatrix=setmatrix, getmatrix=getmatrix, setinverse=setinverse, getinverse=getinverse)
}
cacheSolve <- function(x, ...) {
inv = x$getinverse()
if (!is.null(inv)){
message("getting cached data")
return(inv)
}
mat.data = x$get()
inv = solve(mat.data, ...)
x$setinverse(inv)
return(inv)
}