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

RWSymSomeEigServer<T>, RWHermSomeEigServer<T>

Module:  Linear Algebra   Group:  Symmetric Eigenvalue Decomposition classes


Does not inherit

Local Index

Members

Synopsis

#include <rw/lapack/seigsrv.h>

RWSymSomeEigServer<double> server;
RWSymEigDecomp<double> eig = server(A);   // A is a
// RWSymBandMat<double> #include <rw/lapack/heigsrv.h> RWHermSomeEigServer<double> server; RWHermEigDecomp<double> eig = server(A); // A is a
// RWHermBandMat<DComplex>

Description

The symmetric eigenvalue server class, RWSymSomeEigServer<T>, and the Hermitian eigenvalue server class, RWHermSomeEigServer<T>, allow the computation of a subset of the eigenvalues and (optionally) their corresponding eigenvectors. The computation uses the bisection method to find the eigenvalues, followed by inverse iteration to find the eigenvectors. The subset of eigenvalues to be computed is specified using the RWSlice class, or one of its subclasses, RWRange or RWToEnd. This provides the flexibility to specify either the smallest eigenvalues, the largest, or a selection in between. The eigenvalue ordering is smallest to largest.

Example

Public Constructors

RWSymSomeEigServer(bool computeVecs=true);
RWHermSomeEigServer(bool computeVecs=true);

Public Member Functions

void
RWSymSomeEigServer<T>::computeEigenVectors (bool);
void
RWHermSomeEigServer<DComplex>::computeEigenVectors
(bool);
bool
RWSymSomeEigServer<T>::computeEigenVectors() const;
bool
RWHermSomeEigServer<DComplex>::computeEigenVectors()
                                             const;
RWSymEigDecomp<T>
RWSymSomeEigServer<T>::decompose
(const FloatSymTriDiagDecomp& A) const; DoubleSymEigDecomp<DComplex> RWHermSomeEigServer<DComplex>::decompose
(const DoubleSymTriDiagDecomp& A) const;
RWSlice
RWSymSomeEigServer<T>::setRange(const RWSlice&);
RWSlice
RWHermSomeEigServer<T>::setRange(const RWSlice&);
T
RWSymSomeEigServer<T>::setTolerance(T);
double
RWHermSomeEigServer<DComplex>::setTolerance(double);

Public Member Operators

RWSymEigDecomp<T>     
RWSymSomeEigServer<T>::operator()
(const RWSymMat<T>& A) const; RWSymEigDecomp<T> RWSymSomeEigServer<T>::operator()
(const RWSymBandMat<T>& A) const; RWHermEigDecomp<DComplex> RWHermSomeEigServer<DComplex>::operator()
(const RWHermMat<DComplex>& A) const; RWHermEigDecomp<DComplex> RWHermSomeEigServer<DComplex>::operator()
(const RWHermBandMat<Dcomplex>& A) const;


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.