Matrix.data

Holds the matrix $( RED column - major ) in memory./// Each Column is Vector of length rows

struct Matrix(type, int numCols, int numRows)
vectorType[cols] data;

Meta