This is a set of simple matrix manipulations.
a. Create a five by six matrix, A, that contains random numbers between 0 and 10.
b. Create a six by five matrix, B, that contains random numbers between 0 and 10.
c. Find the inverse of matrix A*B and store it in the variable, C.
d. Without iteration, create a new matrix D that is the same as A except that all values less than 5 are replaced by zero.
e. Using iteration, create a new matrix F that is the same as A except that all values less than 5 are replaced by zero.
f. Create a new matrix G that is the matrix A with the columns reversed.
g. Find the minimum value amongst all the elements in A and store your answer in the variable H.