Skip to content
TopicAliasing_mult4.cpp 101 B
Newer Older
Luker's avatar
Luker committed
MatrixXf A(2,2), B(3,2);
B << 2, 0,  0, 3, 1, 1;
A << 2, 0, 0, -2;
A = (B * A).cwiseAbs();
cout << A;