MAT-TRANS

[GENERIC-FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - matrix a list of lists  

Description:

Matrix transposition.
The matrix is represented by a list of rows. Each row is a list of items.
Rows and columns are interchanged.

Ex. (mat-tran '((1 2 3) (a b c) (4 5 6)) => ((1 a 4) (2 b 5) (3 c 6))