The antisymmetric Indexing Function
Description
Examples
The antisymmetric indexing function can be used to construct tables and rtable objects of type Array or Matrix.
The antisymmetric indexing function is most commonly used as a parameter to the Matrix constructor when creating antisymmetric Matrices (i.e., matrices where the (i, j)th element is the negative of the (j, i)th element).
The name skewsymmetric is equivalent to antisymmetric in the construction of Matrices (rtable-based).
In general, this indexing function specifies that all entries of an object whose indices are even permutations of each other are the same. All entries whose indices are odd permutations of each other are additive reciprocals. Entries with repeated indices are 0.
The indices are rearranged according to a system-determined canonical ordering.
The syntax for specifying the antisymmetric indexing function varies for tables and rtable objects. For details, see the following examples.
M≔Matrix⁡3,3,shape=antisymmetric
M≔000000000
M1,2≔5
M
050−500000
A≔Array⁡antisymmetric,1..3,1..3
A≔000000000
A1,2≔3
A
030−300000
B≔table⁡antisymmetric
B≔table⁡antisymmetric,
Bi,j
Bj,i
−Bi,j
Bi,j,k+Bi,k,j
0
See Also
Array
indexfcn
Matrix
rtable
rtable_indexfcn
symmetric
table
Download Help Document