LocalMatrix.h File Reference
Detailed Description
Definition file for class LocalMatrix.
#include "OFELI_Config.h"
#include "LocalVect.h"
#include "SkMatrix.h"
#include "SkSMatrix.h"
#include "SpMatrix.h"
Go to the source code of this file.
Namespaces | |
| namespace | OFELI |
Classes | |
| class | LocalMatrix |
| Handles small size matrices like element matrices. More... | |
Functions | |
| template<class T_, size_t NR_, size_t NC_> | |
| LocalMatrix< T_, NR_, NC_ > | operator* (T_ a, const LocalMatrix< T_, NR_, NC_ > &x) |
| Operator * (Multiply matrix x by scalar a). | |
| template<class T_, size_t NR_, size_t NC_> | |
| LocalMatrix< T_, NR_, NC_ > | operator+ (const LocalMatrix< T_, NR_, NC_ > &x, const LocalMatrix< T_, NR_, NC_ > &y) |
| Operator + (Add matrix x to y). | |
| template<class T_, size_t NR_, size_t NC_> | |
| LocalMatrix< T_, NR_, NC_ > | operator- (const LocalMatrix< T_, NR_, NC_ > &x, const LocalMatrix< T_, NR_, NC_ > &y) |
| Operator - (Subtract matrix y from x). | |
| template<class T_, size_t NR_, size_t NC_> | |
| LocalMatrix< T_, NR_, NC_ > | operator/ (T_ a, const LocalMatrix< T_, NR_, NC_ > &x) |
| Operator / (Divide matrix x by scalar a). | |
| template<class T_, size_t NR_, size_t NC_> | |
| ostream & | operator<< (ostream &s, const LocalMatrix< T_, NR_, NC_ > &a) |
| Output vector in output stream. | |