Suppose that $A$ is a matrix that describes the matchup information of any pair of Street Fighter characters e.g., considering $3$ characters, assume that the first row/collumn is associated with a character like Ryu, the second row/collumn is associated with Chun-li, the third row/collumn with Dhalsim, etc. Then for a $3\times3$ matrix we have:
$$A=\begin{pmatrix} 5 & 3 & 9 \\ 7 & 5 & 4 \\ 1 & 6 & 5 \end{pmatrix},$$
which tell us e.g., if Ryu fights Chun-li he wins $3$ out of $10$ matches.
Which kind of processing can I do to $A$, so that I know more information about the game?
The most basic evaluation would be that every character should have the same (50%) chance of winning against a random other character. If we rescale $A$ such that $a_{ij}$ is the probability that character $j$ wins against character $i$ ($\frac1{10}$ of every entry in your matrix) then we want $$\|A \cdot e_k\|_1 \stackrel!= \| 0.5 \cdot e \|_1 = N\cdot 0.5$$ Where $N$ is the number of characters and $e_k$ is the $k$-th basis vector and $e$ is the vector of all $1$-s. This means that the column sums of $A$ must all be equal.
In your matrix you can easily see that character $3$ is comparatively stronger than all others.