You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cachematrix.R
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,16 @@
1
1
## Put comments here that give an overall description of what your
2
2
## functions do
3
3
4
-
# as stated in the assignment instructions the main purpose of the function is to create an object with the attached functions that allow for calculating an inverse of the matrix, however the object can be accesded multiple times, but it is updated only at the time when input data changes. It helps to save time when executing and accessing data in the loops.
4
+
# as stated in the assignment instructions the main purpose of the function is
5
+
# to create an object with the attached functions that allow for calculating an
6
+
# inverse of the matrix, however the object can be accesded multiple times, but
7
+
# it is updated only at the time when input data changes. It helps to save time
8
+
# when executing and accessing data in the loops.
5
9
6
10
7
-
## Write a short comment describing this function
8
-
## the functions checks if the input matrix is squared, it is assumed that all input matrices are invertable.
11
+
## Write a short comment describing this function the functions checks if the
12
+
## input matrix is squared, it is assumed that all input matrices are
## The following function help to access the data from the object created by makeCacheMatrix()
30
-
## If the output was not created it computes the inverse of the matrix, when already exists it gets the content from the object and updates the output only when the input data changes.
34
+
## The following function help to access the data from the object created by
35
+
## makeCacheMatrix() If the output was not created it computes the inverse of
36
+
## the matrix, when already exists it gets the content from the object and
37
+
## updates the output only when the input data changes.
0 commit comments