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

RWBandFact<T>

Module:  Linear Algebra   Group:  Factorization classes


Does not inherit

Local Index

Members

Synopsis

#include <rw/lapack/bandfct.h>

RWBandFact<double> LU5(E);      // E is a RWBandMat<double>

Description

A factorization is a representation of a matrix that can be used to efficiently solve systems of equations, and to compute the inverse, determinant, and condition number of a matrix. The class RWBandFact<T> encapsulates factorizations of banded matrices. Provided the matrix being factored is nonsingular, the resulting factorization can always be used to solve a system of equations.

Example

Public Constructors

RWBandFact();
RWBandFact<T>(const RWBandMat<T>& A, bool ec=true);

Public Member Functions

unsigned    
cols() const;
void  
factor(const RWGenMat<T>& A, bool void ec=true);
bool    
fail() const; bool
good() const;
bool    
isSingular() const;
unsigned    
rows() const;
T          
condition(const RWBandFact<T>& A); rw_numeric_traits<T>::norm_type condition(const RWGenFact<T>& A);
T          
determinant(const RWBandFact<T>& A);
RWMathVec<T>          
solve(const RWBandFact<T>& A, const RWMathVec<T>& b);
RWGenMat<T>           
solve(const RWBandFact<T>& A, const RWGenMat<T>& B);


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.