MOAB  4.9.3pre
Eigen::internal::tridiagonalization_inplace_selector< MatrixType, Size, IsComplex > Struct Template Reference

#include <Tridiagonalization.h>

List of all members.

Public Types

typedef Tridiagonalization
< MatrixType >
::CoeffVectorType 
CoeffVectorType
typedef Tridiagonalization
< MatrixType >
::HouseholderSequenceType 
HouseholderSequenceType

Static Public Member Functions

template<typename DiagonalType , typename SubDiagonalType >
static void run (MatrixType &mat, DiagonalType &diag, SubDiagonalType &subdiag, bool extractQ)

Detailed Description

template<typename MatrixType, int Size, bool IsComplex>
struct Eigen::internal::tridiagonalization_inplace_selector< MatrixType, Size, IsComplex >

General full tridiagonalization

Definition at line 437 of file Tridiagonalization.h.


Member Typedef Documentation

template<typename MatrixType , int Size, bool IsComplex>
typedef Tridiagonalization<MatrixType>::CoeffVectorType Eigen::internal::tridiagonalization_inplace_selector< MatrixType, Size, IsComplex >::CoeffVectorType

Definition at line 439 of file Tridiagonalization.h.

template<typename MatrixType , int Size, bool IsComplex>
typedef Tridiagonalization<MatrixType>::HouseholderSequenceType Eigen::internal::tridiagonalization_inplace_selector< MatrixType, Size, IsComplex >::HouseholderSequenceType

Definition at line 440 of file Tridiagonalization.h.


Member Function Documentation

template<typename MatrixType , int Size, bool IsComplex>
template<typename DiagonalType , typename SubDiagonalType >
static void Eigen::internal::tridiagonalization_inplace_selector< MatrixType, Size, IsComplex >::run ( MatrixType &  mat,
DiagonalType &  diag,
SubDiagonalType &  subdiag,
bool  extractQ 
) [inline, static]

Definition at line 442 of file Tridiagonalization.h.

  {
    CoeffVectorType hCoeffs(mat.cols()-1);
    tridiagonalization_inplace(mat,hCoeffs);
    diag = mat.diagonal().real();
    subdiag = mat.template diagonal<-1>().real();
    if(extractQ)
      mat = HouseholderSequenceType(mat, hCoeffs.conjugate())
            .setLength(mat.rows() - 1)
            .setShift(1);
  }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines