antisymmetric - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


The antisymmetric Indexing Function

 

Description

Examples

Description

• 

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.

Examples

MMatrix3,3,shape=antisymmetric

M000000000

(1)

M1,25

M1,25

(2)

M

050−500000

(3)

AArrayantisymmetric,1..3,1..3

A000000000

(4)

A1,23

A1,23

(5)

A

030−300000

(6)

Btableantisymmetric

Btableantisymmetric,

(7)

Bi,j

Bi,j

(8)

Bj,i

Bi,j

(9)

Bi,j,k+Bi,k,j

0

(10)

See Also

Array

indexfcn

Matrix

rtable

rtable_indexfcn

symmetric

table