Matrix Functions in Java

Project 4:  Matrix Functions in Java

This project was to create a matrix class in Java that allowed certain functions to be performed.  This includes matrix transpose, square, and multiplication.  The program allows manipulation of 2 matrices of any dimension.  The matrices can be transposed, multiplied in either order (if possible), squared, or written to a file.

The following three files are my implementation of the project

Matrix.java - The main Matrix class 
myInputs.java - A modified version of myInputs as given to us by Dr. Cooke.  Used to input integer values from the user.  This version has been slightly modified to provide a method that does not prompt before reading input. 
MatrixMenu.java - A class used to display a menu of features to the user.

After compiling these 3 files, the MatrixMenu class should be executed.