2014-01-18 04:43:29 +08:00
|
|
|
#include <Eigen/Core>
|
|
|
|
#include <iostream>
|
|
|
|
using namespace Eigen;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
template<typename Derived>
|
2017-02-11 22:31:28 +08:00
|
|
|
Eigen::Reshaped<Derived, 4, 2>
|
2014-01-18 04:43:29 +08:00
|
|
|
reshape_helper(MatrixBase<Derived>& m)
|
|
|
|
{
|
2017-02-11 22:31:28 +08:00
|
|
|
return Eigen::Reshaped<Derived, 4, 2>(m.derived());
|
2014-01-18 04:43:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|