8 dst.triangularView<
Upper>() = src.triangularView<
Upper>();
13 MatrixXf
m1 = MatrixXf::Ones(4,4);
14 MatrixXf
m2 = MatrixXf::Random(4,4);
15 std::cout <<
"m2 before copy:" << std::endl;
16 std::cout <<
m2 << std::endl << std::endl;
18 std::cout <<
"m2 after copy:" << std::endl;
19 std::cout <<
m2 << std::endl << std::endl;