Lets say I have the following plane:
4
3
2
1
0 1 2 3 4
-1
-2
-3
-4
and a matrix like this:
- -
| 1 2 3 |
| 4 5 6 |
| 7 8 9 |
| 10 11 12 |
- -
When referring to the coordinates of the Cartesian plane (2, 3), we move left to right using the first coordinate(2) and top to bottom with the second coordinate(3). But when referring to a matrix, we say the above is a 4 x 3 matrix where the first coordinate(4) follows the y-axis top to bottom and the second coordinate(3) follows the x-axis left to right. It seems counter-intuitive to reverse the way these structures are represented. I feel like Descartes' system is more intuitive but that may be because I learned that system first and, while I know matricies are an older concept, I was unable to determine the actual date of when the M x N coordinate system was first used. Is there a [good] reason that one notation is used one way in one place and the opposite in the other?