Skip to content
MrNex edited this page Jun 28, 2015 · 2 revisions

Contents

The Structure

The definition of a Matrix is as such:

  typedef struct Matrix
  {
      int numRows;
      int numColumns;
      float* components;
  }Matrix;