Top
Back: 5.1.127 trace
Forward: 5.1.129 type
FastBack: 5. Functions and system variables
FastForward: 6. Tricks and pitfalls
Up: 5.1 Functions
Top: Singular 2-0-4 Manual
Contents: Table of Contents
Index: F. Index
About: About This Document

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.


Top Back: 5.1.127 trace Forward: 5.1.129 type FastBack: 5. Functions and system variables FastForward: 6. Tricks and pitfalls Up: 5.1 Functions Top: Singular 2-0-4 Manual Contents: Table of Contents Index: F. Index About: About This Document
            User manual for Singular version 2-0-4, October 2002, generated by texi2html.