Macaulay2 » Documentation
Packages » Tableaux :: rowEntries
next | previous | forward | backward | up | index | toc

rowEntries -- get the entries in a row.

Description

This returns the entries exactly as they appear in the row without extra null entries, as opposed to T^i.

i1 : T = skewTableau(new Partition from {6,3,2}, new Partition from {2}, toList(1..9))

             ┌───┬───┬───┬───┐
o1 =         │ 1 │ 2 │ 3 │ 4 │
     ┌───┬───┼───┼───┴───┴───┘
     │ 5 │ 6 │ 7 │            
     ├───┼───┼───┘            
     │ 8 │ 9 │                
     └───┴───┘                

o1 : SkewTableau
i2 : rowEntries(T,0)

o2 = {1, 2, 3, 4}

o2 : List
i3 : T^0

o3 = {, , 1, 2, 3, 4}

o3 : List

See also

Ways to use rowEntries:

  • rowEntries(SkewTableau,ZZ)
  • rowEntries(ZZ,SkewTableau)

For the programmer

The object rowEntries is a method function.


The source of this document is in Tableaux/documentation.m2:638:0.