This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## makeCacheMatrix will create an invertible matrix. Then cacheSolve | |
| ## will check for stored matrixes, retrieve, & solve. | |
| ## makeCacheMatrix creates a matrix that can be inverted | |
| makeCacheMatrix <- function(x = matrix()) { | |
| ##In order to invert matrix, it must be a square matrix of any size: n * n | |
| ## to make things simpler, I will give a range of 3:50 | |
| n<-sample(3:50,1) | |
| n |