
 Try the examples in this order.

            F   * Fractions
        addmF.c : Add two matrices.
        submF.c   
       multmF.c : multiply two matrices.
        powmF.c   multiply a matrix by itself, (A**0 = id, A**1 = A, A**2 = A*A, ..)
      smultmF.c : multiply a scalar by a matrice.
      transpF.c : transpose.
       traceF.c
         detF.c : Determinant. 
       minorF.c
      mminorF.c : minor matrix.
      cofactF.c : cofactor.
      mcfactF.c : cofactors matrix.
        adjtF.c : adjoint.
         invF.c : inverse. (use     adjoint())
     inv_gjdF.c : inverse  (use gaussjordan())
      inv_xhF.c : inverse  (use the work on identity matrix)
         gssF.c : gauss.
       gssjdF.c : gauss jordan.

             R   * Random
        addmFR.c : Add two matrices.
        submFR.c   
       multmFR.c : multiply two matrices.
        powmFR.c   multiply a matrix by itself, (A**0 = id, A**1 = A, A**2 = A*A, ..)
      smultmFR.c : multiply a scalar by a matrice.
      transpFR.c : transpose
       traceFR.c
         detFR.c : Determinant. 
         invFR.c : inverse (use     adjoint())
     inv_gjdFR.c : inverse (use gaussjordan())
      inv_xhFR.c : inverse (use the work on identity matrix)
       gssjdFR.c : gauss jordan
