2014-01-18 04:43:29 +08:00
|
|
|
#include <Eigen/Core>
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
using namespace Eigen;
|
|
|
|
|
|
|
|
template<typename Derived>
|
2017-02-11 22:31:28 +08:00
|
|
|
const Reshaped<const Derived>
|
2014-01-18 04:43:29 +08:00
|
|
|
reshape_helper(const MatrixBase<Derived>& m, int rows, int cols)
|
|
|
|
{
|
2017-02-11 22:31:28 +08:00
|
|
|
return Reshaped<const Derived>(m.derived(), rows, cols);
|
2014-01-18 04:43:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int, char**)
|
|
|
|
{
|
|
|
|
MatrixXd m(3, 4);
|
|
|
|
m << 1, 4, 7, 10,
|
|
|
|
2, 5, 8, 11,
|
|
|
|
3, 6, 9, 12;
|
|
|
|
cout << m << endl;
|
2017-02-11 22:31:28 +08:00
|
|
|
Ref<const MatrixXd> n = reshape_helper(m, 2, 6);
|
2014-01-18 04:43:29 +08:00
|
|
|
cout << "Matrix m is:" << endl << m << endl;
|
|
|
|
cout << "Matrix n is:" << endl << n << endl;
|
|
|
|
}
|