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 baaa9c6 commit 0ae10d4Copy full SHA for 0ae10d4
cachematrix.R
@@ -1,8 +1,10 @@
1
-## Put comments here that give an overall description of what your
2
-## functions do
3
-
4
-## Write a short comment describing this function
+## Handles inversion of a matrix, where the matrix inversion must be
+## performed only once, then is cached.
5
+## Make a matrix where the inverse of the matrix is cached
+## Parameters:
6
+## x: any matrix. Assuming here that it is invertable.
7
+## Return: a matrix with methods for caching the inverse of the matrix.
8
makeCacheMatrix <- function(x = matrix()) {
9
inverse <- NULL
10
set <- function(y) {
0 commit comments