5.1.128 transpose
-----------------
Syntax:
transpose ( intmat_expression )

transpose ( matrix_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 
See
intmat;
matrix;
module.
<font size="-1">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; User manual for <a href="http://www.singular.uni-kl.de/"><i>Singular</i></a> version 2-0-4, October 2002,
generated by <a href="http://www.gnu.org/software/texinfo/"><i>texi2html</i></a>.
</font>

</body>
</html>
