cart-elc

Source code for CART-ELC
git clone git://git.laack.co/cart-elc.git
Log | Files | Refs | README | LICENSE

Tutorial_Map_rowmajor.cpp (299B)


      1 int array[8];
      2 for(int i = 0; i < 8; ++i) array[i] = i;
      3 cout << "Column-major:\n" << Map<Matrix<int,2,4> >(array) << endl;
      4 cout << "Row-major:\n" << Map<Matrix<int,2,4,RowMajor> >(array) << endl;
      5 cout << "Row-major using stride:\n" <<
      6   Map<Matrix<int,2,4>, Unaligned, Stride<1,4> >(array) << endl;
      7