ProgrammingAssignment2 icon indicating copy to clipboard operation
ProgrammingAssignment2 copied to clipboard

R fiile

Open Nandhini231205 opened this issue 1 year ago • 0 comments

makeCacheMatrix <- function(x = matrix()) { inv <- NULL set <- function(y) { x <<- y inv <<- NULL } get <- function() x setInverse <- function(inverse) inv <<- inverse getInverse <- function() inv list(set = set, get = get, setInverse = setInverse, getInverse = getInverse) }

Nandhini231205 avatar Dec 07 '24 09:12 Nandhini231205