A vector of elements reaching from the left side to the right side of a two-dimensional matrix. Cf. column.

The distinction between rows and columns is important because given the most common row-major storage for matrices, it's easier for a processor to cache rows of a matrix than columns. An old SPEC benchmark for memory system performance did matrix multiplication the "wrong" way to measure memory bandwidth; compilers flipped the loops into a form much easier on the cache.