blob: 9b822464d6a5b0ea45b6f80798c6d09126f21f71 [file] [log] [blame]
Austin Schuh189376f2018-12-20 22:11:15 +11001RowVectorXf v = RowVectorXf::LinSpaced(20,0,19);
2cout << "Input:" << endl << v << endl;
3Map<RowVectorXf,0,InnerStride<2> > v2(v.data(), v.size()/2);
Austin Schuhc55b0172022-02-20 17:52:35 -08004cout << "Even:" << v2 << endl;