Variable Matrix.elements

The elements of the matrix; stored as an array of rows (i.e. row vectors)

class Matrix
{
  // ...
  T[columns][rows] elements ;
  // ...
}