public MyMatrix(MyMatrix previousMatrix) // copy constructor { matrix = previousMatrix.matrix; }
public MyMatrix(MyMatrix previousMatrix)