libeigen/eigen!2509 Closes #2868 Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
10 lines
386 B
C++
10 lines
386 B
C++
// SPDX-FileCopyrightText: The Eigen Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
Matrix4d X = Matrix4d::Random(4, 4);
|
|
Matrix4d A = X + X.transpose();
|
|
cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl;
|
|
Tridiagonalization<Matrix4d> triOfA(A);
|
|
Vector3d hc = triOfA.householderCoefficients();
|
|
cout << "The vector of Householder coefficients is:" << endl << hc << endl;
|