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
@@ -2,10 +2,10 @@ Matrix3d v = Matrix3d::Random();
|
||||
cout << "The matrix v is:" << endl;
|
||||
cout << v << endl;
|
||||
|
||||
Vector3d v0(1, v(1,0), v(2,0));
|
||||
Vector3d v0(1, v(1, 0), v(2, 0));
|
||||
cout << "The first Householder vector is: v_0 = " << v0.transpose() << endl;
|
||||
Vector3d v1(0, 1, v(2,1));
|
||||
cout << "The second Householder vector is: v_1 = " << v1.transpose() << endl;
|
||||
Vector3d v1(0, 1, v(2, 1));
|
||||
cout << "The second Householder vector is: v_1 = " << v1.transpose() << endl;
|
||||
Vector3d v2(0, 0, 1);
|
||||
cout << "The third Householder vector is: v_2 = " << v2.transpose() << endl;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user