Skip to content

Commit 1516970

Browse files
committed
Passing the additional parameters to the Solve function.
1 parent 8a397b2 commit 1516970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cachematrix.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cacheSolve <- function(x, ...) {
2525
return(m)
2626
}
2727
data <- x$get()
28-
m <- solve(data)
28+
m <- solve(data, ...)
2929
x$setSolve(m)
3030
m
3131
}

0 commit comments

Comments
 (0)