|  |  5.1.157 transpose 
See
 intmat;
 matrix;
 module;
 smatrix.Syntax:transpose (intmat_expression)
 transpose (matrix_expression)
 transpose (smatrix_expression)
 transpose (module_expression)Type:intmat, matrix, or module, corresponding to the argument
Purpose:transposes a matrix.
Example:|  |   ring R=0,x,dp;
  matrix m[2][3]=1,2,3,4,5,6;
  print(m);
==> 1,2,3,
==> 4,5,6 
  print(transpose(m));
==> 1,4,
==> 2,5,
==> 3,6 
 | 
 |