#include "matrix.h"
#include "vector.h"


Go to the source code of this file.
Namespaces | |
| namespace | TBCI |
Classes | |
| class | TBCI::F_BandMatErr |
| class | TBCI::F_BandMatrix< T > |
| C++ class for banded matrices using band storage in a one-dimensional array. More... | |
Functions | |
| template<typename T> | |
| bool | TBCI::operator== (const F_BandMatrix< T > &m1, const F_BandMatrix< T > &m2) |
| template<typename T> | |
| bool | TBCI::operator!= (const F_BandMatrix< T > &m1, const F_BandMatrix< T > &m2) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::operator- (const F_BandMatrix< T > &m) |
| template<typename T> | |
| TVector< T > | TBCI::do_fbdmat_vec_mul (const F_BandMatrix< T > &m, const Vector< T > &v) |
| template<typename T> | |
| TVector< T > | TBCI::operator* (const F_BandMatrix< T > &m, const Vector< T > &v) |
| template<typename T> | |
| TVector< T > | TBCI::operator* (const F_BandMatrix< T > &m, const TVector< T > &tv) |
| template<typename T> | |
| TVector< T > | TBCI::operator* (const F_BandMatrix< T > &m, const TSVector< T > &tsv) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::do_fbdmat_scale (const F_BandMatrix< T > &m, const T z) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::do_fbdmat_scale (const T z, const F_BandMatrix< T > &m) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::operator* (const F_BandMatrix< T > &m, const T z) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::operator* (const T z, const F_BandMatrix< T > &m) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::operator/ (const F_BandMatrix< T > &m, const T z) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::operator+ (const F_BandMatrix< T > &A, const F_BandMatrix< T > &B) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::operator- (const F_BandMatrix< T > &A, const F_BandMatrix< T > &B) |
| template<typename T> | |
| std::ostream & | TBCI::operator<< (std::ostream &stream, const F_BandMatrix< T > &m) |
| template<typename T> | |
| F_BandMatrix< T > | TBCI::transpose (const F_BandMatrix< T > &fbd) |
Definition in file f_bandmatrix.h.
1.5.6