1*bf2c3715SXin Li Matrix2i m = Matrix2i::Random(); 2*bf2c3715SXin Li cout << "Here is the matrix m:" << endl << m << endl; 3*bf2c3715SXin Li cout << "Here is the transpose of m:" << endl << m.transpose() << endl; 4*bf2c3715SXin Li cout << "Here is the coefficient (1,0) in the transpose of m:" << endl 5*bf2c3715SXin Li << m.transpose()(1,0) << endl; 6*bf2c3715SXin Li cout << "Let us overwrite this coefficient with the value 0." << endl; 7*bf2c3715SXin Li m.transpose()(1,0) = 0; 8*bf2c3715SXin Li cout << "Now the matrix m is:" << endl << m << endl; 9