|
MeVisLab Toolbox Reference
|
#include "mlLinearAlgebraSystem.h"#include "mlLinearAlgebraDefs.h"#include "mlFloatingPointMatrix.h"#include "mlVector2.h"Go to the source code of this file.
Classes | |
| class | ml::Tmat2< DT > |
| Declaration of matrix type traits. More... | |
Namespaces | |
| namespace | ml |
| Defines the class GetTileJob. | |
| namespace | std |
| STL namespace. | |
Typedefs | |
Specializations for float, double, and long double. | |
| typedef Tmat2< MLfloat > | ml::Matrix2f |
| A 2x2 matrix of type float. | |
| typedef Tmat2< MLdouble > | ml::Matrix2d |
| A 2x2 matrix of type double. | |
| typedef Tmat2< MLldouble > | ml::Matrix2ld |
| A 2x2 matrix of type long double. | |
| typedef Tmat2< MLdouble > | ml::Matrix2 |
| The standard 2x2 matrix of type double. | |
Functions | |
| template<class DT> | |
| std::ostream & | std::operator<< (std::ostream &os, const ml::Tmat2< DT > &m) |
| Output to stream. | |
| template<class DT> | |
| std::istream & | std::operator>> (std::istream &is, ml::Tmat2< DT > &m) |
| Input from stream. | |
Standalone functions and operators for class Tmat2. | |
| template<class DT> | |
| Tmat2< DT > | ml::operator- (const Tmat2< DT > &a) |
| Returns a matrix a with all values negated. | |
| template<class DT> | |
| Tmat2< DT > | ml::operator+ (const Tmat2< DT > &a, const Tmat2< DT > &b) |
Returns the component-wise sum of matrix a and matrix b. | |
| template<class DT> | |
| Tmat2< DT > | ml::operator- (const Tmat2< DT > &a, const Tmat2< DT > &b) |
Returns the component-wise difference of matrix a and matrix b. | |
| template<class DT> | |
| Tmat2< DT > | ml::operator* (const Tmat2< DT > &a, DT d) |
Returns the component-wise multiplication of matrix a with scalar d. | |
| template<class DT> | |
| Tmat2< DT > | ml::operator* (const DT d, const Tmat2< DT > &a) |
Returns the component-wise multiplication of scalar d with matrix a. | |
| template<class DT> | |
| Tmat2< DT > | ml::operator/ (const Tmat2< DT > &a, const DT d) |
| template<class DT> | |
| Tvec2< DT > | ml::operator* (const Tmat2< DT > &a, const Tvec2< DT > &v) |
| template<class DT> | |
| Tvec2< DT > | ml::operator* (const Tvec2< DT > &v, const Tmat2< DT > &a) |
Functions and operators for class Tmat2. | |
| #define | _ML_MAT2_RC(i, j) |
| template<class DT> | |
| Tmat2< DT > | ml::operator* (const Tmat2< DT > &a, const Tmat2< DT > &b) |
| template<class DT> | |
| bool | ml::operator== (const Tmat2< DT > &a, const Tmat2< DT > &b) |
a == b ? Returns true if yes. | |
| template<class DT> | |
| bool | ml::operator!= (const Tmat2< DT > &a, const Tmat2< DT > &b) |
a != b ? Returns true if yes. | |
| #define _ML_MAT2_RC | ( | i, | |
| j ) |
Helper macro only locally defined for Tmat2 matrix multiplication.
Definition at line 410 of file mlMatrix2.h.
Referenced by ml::operator*().