Matrix.data

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

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

Meta