File tree 1 file changed +38
-6
lines changed
1 file changed +38
-6
lines changed Original file line number Diff line number Diff line change 1
- # # Put comments here that give an overall description of what your
2
- # # functions do
1
+ # # Caching the Inverse of a Matrix:
2
+ # # Matrix inversion is usually a costly computation and there may be some
3
+ # # benefit to caching the inverse of a matrix rather than compute it repeatedly.
4
+ # # Below are a pair of functions that are used to create a special object that
5
+ # # stores a matrix and caches its inverse.
3
6
4
- # # Write a short comment describing this function
7
+ # # This function creates a special "matrix" object that can cache its inverse.
5
8
6
- makeCacheMatrix <- function (x = matrix ()) {
7
9
10
+ makeCacheMatrix <- function (x = matrix ()) {
11
+ m <- NULL
12
+ set <- function (y ) {
13
+ x <<- y
14
+ m <<- NULL
15
+ }
16
+ get <- function () x
17
+ set_inverse <- function (inverse ) {
18
+ m <<- inverse
19
+ }
20
+ get_inverse <- function () m
21
+ list (set = set , get = get ,
22
+ set_inverse = set_inverse ,
23
+ get_inverse = get_inverse )
8
24
}
9
25
10
26
11
- # # Write a short comment describing this function
27
+ # # This function computes the inverse of the special "matrix" created by
28
+ # # makeCacheMatrix above. If the inverse has already been calculated (and the
29
+ # # matrix has not changed), then it should retrieve the inverse from the cache.
30
+
12
31
13
32
cacheSolve <- function (x , ... ) {
14
- # # Return a matrix that is the inverse of 'x'
33
+ m <- x $ get_inverse()
34
+ if (! is.null(m )){
35
+ message(" getting cached data" )
36
+ return (m )
37
+ }
38
+ data <- x $ get()
39
+ m <- solve(data , ... )
40
+ x $ set_inverse(m )
41
+ m
15
42
}
43
+
44
+
45
+
46
+
47
+
You can’t perform that action at this time.
0 commit comments