Skip to content

Commit 6ff8e80

Browse files
committed
Update cachematrix.R
1 parent 40285b7 commit 6ff8e80

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

cachematrix.R

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
## so that the inverse of a matrix can be cache to speed up its retreival
33

44
## This function stores a matrix and its inverse
5-
65
makeCacheMatrix <- function(x = matrix())
76
{
87
data <- x
@@ -35,7 +34,6 @@ makeCacheMatrix <- function(x = matrix())
3534

3635

3736
## This function retreives the inverse of a matrix either from its cache or it calculates it and stores it in the object
38-
3937
cacheSolve <- function(x, ...)
4038
{
4139
inverse <- x$get_inverse()

0 commit comments

Comments
 (0)