Click or drag to resize

PermutationMultiply Operator

Multiplies two permutations.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static Permutation operator *(
	Permutation a,
	Permutation b
)

Parameters

a
Type: Meta.Numerics.FunctionsPermutation
The first permutation.
b
Type: Meta.Numerics.FunctionsPermutation
The second permutation.

Return Value

Type: Permutation
The product permutation ab.
Remarks

The product ab means first applying b, then applying a. This right-to-left convention arises from the convention that operators are applied to the right.

See Also