MOAB
4.9.3pre
|
#include <ComplexSchur.h>
Static Public Member Functions | |
static void | run (ComplexSchur< MatrixType > &_this, const MatrixType &matrix, bool computeU) |
Definition at line 353 of file ComplexSchur.h.
static void Eigen::internal::complex_schur_reduce_to_hessenberg< MatrixType, IsComplex >::run | ( | ComplexSchur< MatrixType > & | _this, |
const MatrixType & | matrix, | ||
bool | computeU | ||
) | [inline, static] |
Definition at line 356 of file ComplexSchur.h.
{
_this.m_hess.compute(matrix);
_this.m_matT = _this.m_hess.matrixH();
if(computeU) _this.m_matU = _this.m_hess.matrixQ();
}