forked from rdpeng/ProgrammingAssignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachematrix.R
51 lines (40 loc) · 1.51 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
## First function "makeCacheMatrix" creates a list of functions to work with
## a given matrix(x)- sets/gets the value of the matrix and its inversion
## Second function "cacheSolve" checks if the inversed matrix has been
## calculated already and returns the value; if not - inverses the matrix(x)
## 1 - Set/get the matrix and its inversion
makeCacheMatrix <- function(x = matrix()) {
xinv <- NULL
setmx <- function(y) {
x <<- y
xinv <<- NULL
}
getmx <- function() x
## Computing the inverse of a square matrix can be done with the solve f
## For this assn-t, assume that the matrix supplied is always invertible
setinversedmx <- function(solve) xinv <<- solve
getinversedmx <- function() xinv
list(setmx = setmx, getmx = getmx,
setinversedmx = setinversedmx,
getinversedmx = getinversedmx)
}
## Return a matrix that is the inverse of 'x' (first check if the inversion exists)
cacheSolve <- function(x, ...) {
xinv <- x$getinversedmx()
if(!is.null(xinv)) {
message("getting cached data")
return(xinv)
}
data <- x$getmx()
xinv <- solve(data, ...)
x$setinversedmx(xinv)
xinv
}
##my own test runs
##create x as a matrix and call 2 functions above (+see what is in there)
# x<-matrix(c(1,0,2,1,1,3,3,0,1,1,1,2,0,2,0,1),4,4)
# spmx<-makeCacheMatrix(x)
# spmx
# cacheSolve(spmx)
# cache<-cacheSolve(spmx)
# cache