cart-elc

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

Matrix_variadic_ctor_cxx11.cpp (104B)


      1 Matrix<int, 1, 6> a(1, 2, 3, 4, 5, 6);
      2 Matrix<int, 3, 1> b {1, 2, 3};
      3 cout << a << "\n\n" << b << endl;