Macaulay2 » Documentation
Packages » SpechtModule :: CharacterTable _ Sequence = Thing
next | previous | forward | backward | up | index | toc

CharacterTable _ Sequence = Thing -- modifies an entry from the character table

Synopsis

Description

i1 : charTable = characterTable 5

o1 = | 1  1  1  1  1  1  1 |
     | -1 0  -1 1  0  2  4 |
     | 0  -1 1  -1 1  1  5 |
     | 1  0  0  0  -2 0  6 |
     | 0  1  -1 -1 1  -1 5 |
     | -1 0  1  1  0  -2 4 |
     | 1  -1 -1 1  1  -1 1 |

o1 : CharacterTable
i2 : a = new Partition from {3,1,1}; b = new Partition from {1,1,1,1,1}

o3 = Partition{1, 1, 1, 1, 1}

o3 : Partition
i4 : charTable_(0,0)=-100

o4 = -100
i5 : charTable_(a,b)=100

o5 = 100
i6 : charTable

o6 = | -100 1  1  1  1  1  1   |
     | -1   0  -1 1  0  2  4   |
     | 0    -1 1  -1 1  1  5   |
     | 1    0  0  0  -2 0  100 |
     | 0    1  -1 -1 1  -1 5   |
     | -1   0  1  1  0  -2 4   |
     | 1    -1 -1 1  1  -1 1   |

o6 : CharacterTable

See also

Ways to use this method: