Equal Matrix ISC Computer Science 2018 Theory
Two matrices are said to be equal if they have the same dimension and their corresponding elements are equal. For example the two matrices A and B given below are equal: Matrix A 1 2 3 2 4 5 3 5 6 Matrix B 1 2 3 2 4 5 3 5 6 Design a class EqMat to check if two matrices are equal or not. Assume that the two matrices have the same dimension. Some of the members of the class are given below: Class name : EqMat Data members/instance variables : a[][]: to store integer elements m: to store the number of rows n: to store the number of columns Member functions/methods : EqMat(int mm, int nn): parameterized constructor to initialize the data members m = mm and n = nn void readArray(): to enter elements in the array int check(EqMat p, EqMat q): checks if the parameterized objects p and q are equal and returns 1 if true, otherwise returns 0 void print(): displays the array elements Define the class EqMat giving details of the constructor, void readArray(), int check(EqMat, EqMat) and void print(...