#include #include template const Eigen::Reshaped reshape_helper(const Eigen::MatrixBase& m, int rows, int cols) { return Eigen::Reshaped(m.derived(), rows, cols); } int main(int, char**) { Eigen::MatrixXd m(3, 4); m << 1, 4, 7, 10, 2, 5, 8, 11, 3, 6, 9, 12; std::cout << m << std::endl; Eigen::Ref n = reshape_helper(m, 2, 6); std::cout << "Matrix m is:" << std::endl << m << std::endl; std::cout << "Matrix n is:" << std::endl << n << std::endl; }