eigen/doc/examples/class_FixedReshaped.cpp

21 lines
474 B
C++
Raw Normal View History

2014-01-18 04:43:29 +08:00
#include <Eigen/Core>
#include <iostream>
template<typename Derived>
Eigen::Reshaped<Derived, 4, 2>
reshape_helper(Eigen::MatrixBase<Derived>& m)
2014-01-18 04:43:29 +08:00
{
return Eigen::Reshaped<Derived, 4, 2>(m.derived());
2014-01-18 04:43:29 +08:00
}
int main(int, char**)
{
Eigen::MatrixXd m(2, 4);
2014-01-18 04:43:29 +08:00
m << 1, 2, 3, 4,
5, 6, 7, 8;
Eigen::MatrixXd n = reshape_helper(m);
std::cout << "matrix m is:" << std::endl << m << std::endl;
std::cout << "matrix n is:" << std::endl << n << std::endl;
2014-01-18 04:43:29 +08:00
return 0;
}