#include <iostream>
#include "Core/Array/Element/ArithTypes.h"
#include "Core/Vector/VectorTem.h"
Include dependency graph for MatrixTem.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | Impala |
namespace | Impala::Core |
namespace | Impala::Core::Matrix |
Classes | |
class | Impala::Core::Matrix::MatrixTem< C > |
Template definition for matrices. More... | |
Defines | |
#define | SIGN(a, b) ((b) < 0.0 ? -fabs(a): fabs(a)) |
Functions | |
template<class C> | |
VectorTem< C > | Impala::Core::Matrix::operator * (const VectorTem< C > &a, const MatrixTem< C > &b) |
template<class C> | |
VectorTem< C > | Impala::Core::Matrix::operator * (const MatrixTem< C > &a, const VectorTem< C > &b) |
template<class C> | |
static void | Impala::Core::Matrix::svdcmp (C *a, VectorTem< C > &w, C *v, int n, int m) |
template<class C> | |
static int | Impala::Core::Matrix::ludcmp (C *a, int n, short *indx, double *d) |
template<class C> | |
static void | Impala::Core::Matrix::lubksb (C *a, int n, short *indx, double *b) |
template<class C> | |
void | Impala::Core::Matrix::tred2 (MatrixTem< C > &a, VectorTem< C > &d, VectorTem< C > &e) |
template<class C> | |
void | Impala::Core::Matrix::tqli (VectorTem< C > &d, VectorTem< C > &e, MatrixTem< C > &z) |
Variables | |
const double | Impala::Core::Matrix::HxMatrix_EPS = 1e-12 |