The MatrixRankMethod enumeration contains methods for creating a ranking matrix.
It is used by the following property:
| Value | Brief description |
| 0 | NoOrdered. Identical values have identical ranks, the next rank is greater by the number of identical elements (final values are as follows: 1,1,3,3,5). |
| 1 | EqualOrdered.Identical values have identical ranks, the next rank is greater by 1 (final values are as follows: 1,1,2,2,3). |
| 2 | Ordered.The rank of elements with identical values increases as the element index increases (final values are as follows: 1,2,3,4,5). |
| 3 | InplaceExchange.Swap the values in the original matrix. |
See also: