File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- # # Put comments here that give an overall description of what your
2
- # # functions do
3
-
4
- # # Write a short comment describing this function
1
+ # # This functions belong to the Programming assignment 2,
2
+ # # from the course R Programming of coursera
3
+ # #
4
+ # # The functions calculate the inverse of a Matrix (which can be a costly operation),
5
+ # # cache it and load it if requested later
6
+ # #
5
7
8
+ # # The makeCacheMatrix function creates a special "matrix" object
9
+ # # and defines the object functions to aid the cache/load functionality
6
10
makeCacheMatrix <- function (x = matrix ()) {
7
11
8
12
}
9
13
10
14
11
- # # Write a short comment describing this function
12
-
15
+ # # The function cacheSolve calculates and caches the inverse of the "matrix" object
16
+ # # if it wasn't yet calculated or loads it from cache otherwise.
13
17
cacheSolve <- function (x , ... ) {
14
18
# # Return a matrix that is the inverse of 'x'
15
19
}
You can’t perform that action at this time.
0 commit comments