File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
# # Put comments here that give an overall description of what your
2
2
# # functions do
3
3
4
+ # # This library is creates a matrix that can cache it's inverse
5
+ # # and gives computes the inverse of the created matrix
6
+
4
7
# # Write a short comment describing this function
5
8
6
- makeCacheMatrix <- function ( x = matrix ()) {
9
+ # # makeCacheMatrix: This function creates a special " matrix" object that can cache its inverse.
7
10
11
+ makeCacheMatrix <- function (x = matrix ()) {
12
+
8
13
}
9
14
10
15
11
16
# # Write a short comment describing this function
17
+ # # cacheSolve: This function computes the inverse of the special "matrix" returned by makeCacheMatrix above.
18
+ # # If the inverse has already been calculated (and the matrix has not changed), then the cachesolve should
19
+ # # retrieve the inverse from the cache.
12
20
13
21
cacheSolve <- function (x , ... ) {
14
22
# # Return a matrix that is the inverse of 'x'
You can’t perform that action at this time.
0 commit comments