71.67 ConjugateTableau

ConjugateTableau(tab)

Returns the tableau obtained from tab by interchangings its rows and columns.

gap> ConjugateTableau([ [ 1, 3, 5, 6 ], [ 2, 4 ] ]);
[ [ 1, 2 ], [ 3, 4 ], [ 5 ], [ 6 ] ] 

This function requires the package ``specht'' (see RequirePackage).

Previous Up Top
Index

GAP 3.4.4
April 1997