During compilation, I get a slew of errors whenever I perform
this operation:

Code:
cout << aMatrix.Transpose( ) << endl;
-- the overloaded operator<< non-member method is:
Code:
       ostream & operator<<( ostream & out, const Matrix & matrixRHS )
-- the member method Transpose( ) [ transposes the calling object by ...