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
)
Public Shared Operator * (
a As Permutation,
b As Permutation
) As Permutation
public:
static Permutation^ operator *(
Permutation^ a,
Permutation^ b
)
static let inline (*)
a : Permutation *
b : Permutation : Permutation
Parameters
- a
- Type: Meta.Numerics.FunctionsPermutation
The first permutation. - b
- Type: Meta.Numerics.FunctionsPermutation
The second permutation.
Return Value
Type:
PermutationThe 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