eigen/doc/examples/class_FixedReshaped.cpp

23 lines
467 B
C++
Raw Normal View History

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