Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Linear Algebra Module Reference Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

RWHessEigServer<T>

Module:  Linear Algebra   Group:  Nonsymmetric Eigenvalue Decomposition classes


Does not inherit

Local Index

Members

Synopsis

#include <rw/lapack/eigsrv.h>

RWHessEigServer<double> server;
RWHessEigDecomp<double> deig = server(A); // A is an
// RWGenMat<double>

Description

The class RWHessEigServer<T> encapsulates Hessenberg decomposition eigenvalue servers. These servers are used to construct eigenvalue decomposition objects of type RWEigDecomp<T> from Hessenberg decompositions. The server can be configured to control which eigenvectors are computed, and other details of the computation. The eigenvectors are computed using inverse iteration. This is a good method to use when you need only a small number of the eigenvectors, perhaps less than 20%.

Example

Public Constructor

RWHessEigServer(bool computeLeftVecs=true,
          bool computeRightVecs=true,
          bool scale=true,
          bool permute=true);

Public Member Functions

void
Balance(bool);
bool
computeAllEigenVectors() const;
bool
computeLeftEigenVectors() const;
bool
computeLeftEigenVectors(bool);
bool
computeRightEigenVectors() const;
bool
computeRightEigenVectors(bool);
bool
scale() const;
void
scale(bool) const;
void
selectEigenVectors(const RWMathVec<int>&);
void
selectEigenVectors(const RWSlice&);
bool
permute() const;
void
permute(bool) const;

Public Member Operators

RWEigDecomp<T>   operator()(const RWGenMat<T>&);
RWEigDecomp<T>   operator()(const
RWBalanceDecomp<T>&); RWEigDecomp<T> operator()(const
RWHessenbergDecomp<T>&);


Previous fileTop of DocumentContentsIndex pageNext file

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.