cart-elc

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

Tutorial_range_for_loop_1d_cxx11.cpp (117B)


      1 VectorXi v = VectorXi::Random(4);
      2 cout << "Here is the vector v:\n";
      3 for(auto x : v) cout << x << " ";
      4 cout << "\n";