// Random values are stored with the column index of getColumns(). e.g. a matrix has 4 columns, values are at column indexes 0, 1, 2, 3 and junk data at index 4.
// // ConstMatrixRow matrixRow = this->getRow( row );// If the program even compiles, this line fails because a segfault is thrown on the first line of getRow()
// // WHEN debugging with GDB:
// // (gdb) p this->rowPointers[0]
// // Could not find operator[].
// // (gdb) p rowPointers.getElement(0)
// // Attempt to take address of value not located in memory.