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
@@ -7,5 +7,4 @@ cout << "Here is the matrix n:\n" << n << endl;
|
||||
cout << "And now here is m.inverse()*n, taking advantage of the fact that"
|
||||
" m is upper-triangular:\n"
|
||||
<< m.triangularView<Eigen::Upper>().solve(n) << endl;
|
||||
cout << "And this is n*m.inverse():\n"
|
||||
<< m.triangularView<Eigen::Upper>().solve<Eigen::OnTheRight>(n);
|
||||
cout << "And this is n*m.inverse():\n" << m.triangularView<Eigen::Upper>().solve<Eigen::OnTheRight>(n);
|
||||
|
||||
Reference in New Issue
Block a user