We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a3429 commit c94a872Copy full SHA for c94a872
cachematrix.R
@@ -22,8 +22,11 @@ makeCacheMatrix <- function(x = matrix()) {
22
23
}
24
25
-
26
-## Write a short comment describing this function
+## The following function returns the inverse value of the matrix
+## First it will check whether inverse value has been computed.
27
+## If so, then it will get the result from cache and compute nothing.
28
+## If not, then it computes and then stores the value using setinverse
29
+## function.
30
31
cacheSolve <- function(x, ...) {
32
## Return a matrix that is the inverse of 'x'
0 commit comments