rdpeng / ProgrammingAssignment2

Repository for Programming Assignment 2 for R Programming on Coursera
838 stars 143.48k forks source link

Mohamed Adel Submission #2814

Open MohamedAdel92 opened 7 years ago

MohamedAdel92 commented 7 years ago

A pair of functions that cache the inverse of a matrix.

This function creates a special "matrix" object that can cache its inverse.

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

This function computes the inverse of the special "matrix" returned by makeCacheMatrix above.

cacheSolve <- function(x, ...) {

Return a matrix that is the inverse of 'x'

inv <- x$getInverse() if(!is.null(inv)){ message("getting cached data") return(inv) } data <- x$get() inv <- solve(data) x$setInverse(inv) inv
}

song1102 commented 7 years ago

I can run it but they all looks similar