mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Clang-format tests, examples, libraries, benchmarks, etc.
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
3252ecc7a4
commit
46e9cdb7fe
@@ -1,19 +1,14 @@
|
||||
#include <Eigen/Core>
|
||||
#include <iostream>
|
||||
|
||||
template<typename Derived>
|
||||
const Eigen::Reshaped<const Derived>
|
||||
reshape_helper(const Eigen::MatrixBase<Derived>& m, int rows, int cols)
|
||||
{
|
||||
template <typename Derived>
|
||||
const Eigen::Reshaped<const Derived> reshape_helper(const Eigen::MatrixBase<Derived>& m, int rows, int cols) {
|
||||
return Eigen::Reshaped<const Derived>(m.derived(), rows, cols);
|
||||
}
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
int main(int, char**) {
|
||||
Eigen::MatrixXd m(3, 4);
|
||||
m << 1, 4, 7, 10,
|
||||
2, 5, 8, 11,
|
||||
3, 6, 9, 12;
|
||||
m << 1, 4, 7, 10, 2, 5, 8, 11, 3, 6, 9, 12;
|
||||
std::cout << m << std::endl;
|
||||
Eigen::Ref<const Eigen::MatrixXd> n = reshape_helper(m, 2, 6);
|
||||
std::cout << "Matrix m is:" << std::endl << m << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user