Glossary

Algo: Matrix

A matrix is a table of values; an $m \times n$ matrix has $m$ rows and $n$ columns. Given a matrix $A$, we write $A_{i, j}$ to indicate the value found at the intersection of row $i$ and column $j$.

You may choose to think of $A$ as a collection of $m$ arrays, each of length $n$.

Wikipedia