Skip to content

Commit dd25ede

Browse files
author
Anirban Chakraborty
committed
my commit
1 parent 7f657dd commit dd25ede

File tree

1 file changed

+38
-6
lines changed

1 file changed

+38
-6
lines changed

cachematrix.R

+38-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,47 @@
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.
36

4-
## Write a short comment describing this function
7+
## This function creates a special "matrix" object that can cache its inverse.
58

6-
makeCacheMatrix <- function(x = matrix()) {
79

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)
824
}
925

1026

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+
1231

1332
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
1542
}
43+
44+
45+
46+
47+

0 commit comments

Comments
 (0)