#include <Eigen/Dense>
#include <iostream>
◆ main()
7 Eigen::Array44f
a = Eigen::Array44f::Constant(0.6);
8 std::cout <<
"Here is the array a:\n" <<
a <<
"\n\n";
9 a.block<2, 2>(1, 1) =
m;
10 std::cout <<
"Here is now a with m copied into its central 2x2 block:\n" <<
a <<
"\n\n";
11 a.block(0, 0, 2, 3) =
a.block(2, 1, 2, 3);
12 std::cout <<
"Here is now a with bottom-right 2x3 block copied into top-left 2x3 block:\n" <<
a <<
"\n\n";
const Scalar * a
Definition: level2_cplx_impl.h:32
int * m
Definition: level2_cplx_impl.h:294
References a, and m.