Skip to content

Commit 0189841

Browse files
committed
Adding comment about steps for makeCacheMatrix function.
1 parent 2df5442 commit 0189841

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cachematrix.R

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
## some benefit to caching the inverse of a matrix rather than compute
33
## it repeatedly
44

5-
5+
## makeCacheMatrix creates a list containing a function to
6+
## 1. set the value of the matrix
7+
## 2. get the value of the matrix
8+
## 3. set the inverse value of the matrix
9+
## 4. get the inverse value of the matrix
610
makeCacheMatrix <- function(x = matrix()) {
711

812
}

0 commit comments

Comments
 (0)