mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 09:39:34 +08:00
merge
This commit is contained in:
commit
f2c18f2e37
@ -3,7 +3,7 @@ MatrixXcd A = X + X.adjoint();
|
||||
cout << "Here is a random self-adjoint 4x4 matrix:" << endl << A << endl << endl;
|
||||
|
||||
Tridiagonalization<MatrixXcd> triOfA(A);
|
||||
MatrixXcd T = triOfA.matrixT();
|
||||
MatrixXd T = triOfA.matrixT();
|
||||
cout << "The tridiagonal matrix T is:" << endl << triOfA.matrixT() << endl << endl;
|
||||
|
||||
cout << "We can also extract the diagonals of T directly ..." << endl;
|
||||
|
@ -108,7 +108,7 @@ namespace internal {
|
||||
{
|
||||
typedef double scalar_type;
|
||||
typedef fftw_complex complex_type;
|
||||
fftw_plan m_plan;
|
||||
::fftw_plan m_plan;
|
||||
fftw_plan() :m_plan(NULL) {}
|
||||
~fftw_plan() {if (m_plan) fftw_destroy_plan(m_plan);}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user