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 9383980 commit 9997370Copy full SHA for 9997370
cachematrix.R
@@ -22,7 +22,9 @@ makeCacheMatrix <- function(x = matrix()) {
22
}
23
24
25
-## Write a short comment describing this function
+## calculate and returns inverse of a matrix data structure (as returned by makeCacheMatrix).
26
+## Caches inverse for subsequent calls. i.e. called more than one time on the same argument
27
+## returns the cached version of the result instead of computing it again.
28
29
cacheSolve <- function(x, ...) {
30
x.inv <- x$get.inv()
0 commit comments