MeVisLab Toolbox Reference
mlMatrix5.h File Reference
#include "mlLinearAlgebraSystem.h"
#include "mlLinearAlgebraDefs.h"
#include "mlFloatingPointMatrix.h"
#include "mlVector5.h"
#include "mlMatrix4.h"
#include <mlErrorMacros.h>
#include <mlErrorOutput.h>

Go to the source code of this file.

Classes

class  ml::Tmat5< DT >
 A five by five matrix class of five row vectors. More...
 

Namespaces

 ml
 Main documentation file for ML users and developers.
 

Typedefs

Specializations for float, double and long double.
typedef Tmat5< MLfloatml::Matrix5f
 A 5x5 matrix of type float. More...
 
typedef Tmat5< MLdoubleml::Matrix5d
 A 5x5 matrix of type double. More...
 
typedef Tmat5< MLldoubleml::Matrix5ld
 A 5x5 matrix of type long double. More...
 
typedef Tmat5< MLdoubleml::Matrix5
 The standard 5x5 matrix of type double. More...
 

Functions

template<class DT >
std::ostream & std::operator<< (std::ostream &os, const ml::Tmat5< DT > &m)
 Output to std::ostream. More...
 
template<class DT >
std::istream & std::operator>> (std::istream &is, ml::Tmat5< DT > &m)
 Input from stream. More...
 
Standalone operators of class Tmat5.
template<class DT >
Tmat5< DT > ml::operator- (const Tmat5< DT > &a)
 Returns a matrix a with all values negated. More...
 
template<class DT >
Tmat5< DT > ml::operator+ (const Tmat5< DT > &a, const Tmat5< DT > &b)
 Returns the component wise sum of matrix a and matrix b. More...
 
template<class DT >
Tmat5< DT > ml::operator- (const Tmat5< DT > &a, const Tmat5< DT > &b)
 Returns the component wise difference of matrix a and matrix b. More...
 
template<class DT >
Tmat5< DT > ml::operator* (const Tmat5< DT > &a, const DT d)
 Returns the component wise product of matrix a with scalar d. More...
 
template<class DT >
Tmat5< DT > ml::operator* (const DT d, const Tmat5< DT > &a)
 Returns the component wise product of scalar d with matrix a. More...
 
template<class DT >
Tmat5< DT > ml::operator/ (const Tmat5< DT > &a, const DT d)
 Returns the component wise division of matrix a by scalar d. More...
 

Special Functions

#define _ML_MAT5_RC(i, j)
 Internal helper macro to multiply two matrices, do not use. More...
 
template<class DT >
Tmat5< DT > ml::operator* (const Tmat5< DT > &a, const Tmat5< DT > &b)
 Matrix product. More...
 
template<class DT >
bool ml::operator== (const Tmat5< DT > &a, const Tmat5< DT > &b)
 a == b ? Return true if yes, otherwise false. More...
 
template<class DT >
bool ml::operator!= (const Tmat5< DT > &a, const Tmat5< DT > &b)
 a != b ? Return true if yes, otherwise false. More...
 

Macro Definition Documentation

◆ _ML_MAT5_RC

#define _ML_MAT5_RC (   i,
 
)
Value:
a[i][0]*b[0][j] + a[i][1]*b[1][j] + a[i][2]*b[2][j] + \
a[i][3]*b[3][j] + a[i][4]*b[4][j]

Internal helper macro to multiply two matrices, do not use.

Definition at line 649 of file mlMatrix5.h.

Function Documentation

◆ operator<<()

template<class DT >
std::ostream& std::operator<< ( std::ostream &  os,
const ml::Tmat5< DT > &  m 
)
inline

Output to std::ostream.

Definition at line 745 of file mlMatrix5.h.

References std::operator<<().

◆ operator>>()

template<class DT >
std::istream& std::operator>> ( std::istream &  is,
ml::Tmat5< DT > &  m 
)
inline

Input from stream.

Definition at line 754 of file mlMatrix5.h.

References ml::is().