|
CSL
6.0
|
#include <string.h>#include <cmath>#include <cstdio>#include <cstdlib>#include <string>#include <iostream>#include <stdexcep>Go to the source code of this file.
Classes | |
| class | math::matrix_error |
| class | math::matrix |
| struct | math::matrix::base_mat |
Namespaces | |
| math | |
Macros | |
| #define | __GXX_WEAK__ 1 |
| #define | __DEPRECATED 1 |
| #define | __GNUG__ 4 |
| #define | __EXCEPTIONS 1 |
| #define | __private_extern__ extern |
| #define | _NO_THROW throw () |
| #define | _THROW_MATRIX_ERROR throw (matrix_error) |
| #define | max(a, b) (((a) > (b)) ? (a) : (b)) |
| #define | min(a, b) (((a) < (b)) ? (a) : (b)) |
| #define | FRIEND_FUN_TEMPLATE <> |
| #define | REPORT_ERROR(ErrormMsg) throw matrix_error(ErrormMsg); |
| #define | MAT_TEMPLATE template <class T> |
| #define | matrixT matrix<T> |
| #define max | ( | a, | |
| b | |||
| ) | (((a) > (b)) ? (a) : (b)) |
Definition at line 156 of file matrix.h.
Referenced by isDone(), csl::Lorenz::nextBuffer(), and VUMeter::setColours().
| #define min | ( | a, | |
| b | |||
| ) | (((a) < (b)) ? (a) : (b)) |
Definition at line 157 of file matrix.h.
Referenced by isDone(), and VUMeter::setColours().
| #define REPORT_ERROR | ( | ErrormMsg | ) | throw matrix_error(ErrormMsg); |
| #define matrixT matrix<T> |
Definition at line 209 of file matrix.h.
Referenced by math::operator!(), math::operator*(), math::operator+(), math::operator-(), math::operator^(), and math::operator~().