#include #include using namespace Eigen; using namespace std; template Eigen::Reshaped reshape_helper(MatrixBase& m) { return Eigen::Reshaped(m.derived()); } int main(int, char**) { MatrixXd m(2, 4); m << 1, 2, 3, 4, 5, 6, 7, 8; MatrixXd n = reshape_helper(m); cout << "matrix m is:" << endl << m << endl; cout << "matrix n is:" << endl << n << endl; return 0; }