Macaulay2 » Documentation
Packages » SpechtModule :: tableauToList(YoungTableau)
next | previous | forward | backward | up | index | toc

tableauToList(YoungTableau) -- converts a YoungTableau to list form

Synopsis

Description

i1 : p = new Partition from {2,2,1}

o1 = Partition{2, 2, 1}

o1 : Partition
i2 : l = {2,1,0,3,4}

o2 = {2, 1, 0, 3, 4}

o2 : List
i3 : y = youngTableau(p,l)

o3 = | 2 1 |
     | 0 3 |
     | 4 |

o3 : YoungTableau
i4 : tableauToList y

o4 = {{2, 1}, {0, 3}, {4}}

o4 : List

Ways to use this method: