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

verticalConcatenate -- vertical concatenation of a list of tableaux

Description

i1 : T1 = skewTableau(new Partition from {5}, new Partition from {2})

             ┌───┬───┬───┐
o1 =         │   │   │   │
             └───┴───┴───┘

o1 : SkewTableau
i2 : T2 = skewTableau(new Partition from {3,2}, new Partition from {1}, {1,2,3,4})

         ┌───┬───┐
o2 =     │ 1 │ 2 │
     ┌───┼───┼───┘
     │ 3 │ 4 │    
     └───┴───┘    

o2 : SkewTableau
i3 : T3 = skewTableau(new Partition from {5,-3})

                 ║───┬───┬───┬───┬───┐
o3 =             ║   │   │   │   │   │
     ┌───┬───┬───║───┴───┴───┴───┴───┘
     │░░░│░░░│░░░║                    
     └───┴───┴───║                    

o3 : SkewTableau
i4 : verticalConcatenate {T1,T2,T3}

                 ║       ┌───┬───┬───┐
o4 =             ║       │   │   │   │
                 ║   ┌───┼───┼───┴───┘
                 ║   │ 1 │ 2 │        
                 ║───┼───┼───┘        
                 ║ 3 │ 4 │            
                 ║───┼───┼───┬───┬───┐
                 ║   │   │   │   │   │
     ┌───┬───┬───║───┴───┴───┴───┴───┘
     │░░░│░░░│░░░║                    
     └───┴───┴───║                    

o4 : SkewTableau

See also

Ways to use verticalConcatenate:

  • verticalConcatenate(List)

For the programmer

The object verticalConcatenate is a method function.


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