/********************************************************************** File: MyMatrix.java DRAFT Author: Tracy Kouns Date: 10/25/00 Modified by: (your name goes here) Modification date: (date you completed modifications goes here) Purpose: This class uses a two-dimensional array and member methods to implement various mathematical matrix operations. Directions: Complete the implementation of the methods. Include proper documentation. ***********************************************************************/ class MyMartix { public MyMatrix() { } public MyMatrix(int r, int c) { } public MyMatrix(MyMatrix m) { } public void display() { } public void readElements(int r,int c) { } public boolean Equals(MyMatrix m) { } public boolean isSymmetric() { } public MyMatrix transpose() { } public MyMatrix ScalarMult(int n) { } public MyMatrix MatrixAdd(MyMatrix m) { } public MyMatrix MatrixSubtract(MyMatrix m) { } public MyMatrix MatrixMult(MyMatrix m) { } private int rows; private int cols; private int[][] matrix; }