ACT-CV - Machine Vision for Cognitive Modeling
|
matrices of double precision floating points More...
#include <iostream>
#include <cmath>
Go to the source code of this file.
Classes | |
class | DMatrix< zeilen, spalten > |
a matrix of type double More... | |
class | DMatrix< zeilen, spalten > |
a matrix of type double More... | |
class | SquareOperation< _t > |
how to square something More... | |
class | SquareOperation< DMatrix< zeilen, 1 > > |
how to multiply a vector with itself More... | |
Functions | |
template<unsigned int dims> | |
double | Len (const DMatrix< dims, 1 > &p) |
template<unsigned int zeilen, unsigned int spalten> | |
DMatrix< zeilen, spalten > | operator- (const DMatrix< zeilen, spalten > &m) |
template<unsigned int zeilen, unsigned int spalten> | |
std::ostream & | operator<< (std::ostream &o, const DMatrix< zeilen, spalten > &m) |
template<unsigned int zeilen, unsigned int spalten> | |
std::istream & | operator>> (std::istream &in, DMatrix< zeilen, spalten > &m) |
template<unsigned int l, unsigned int m, unsigned int n> | |
DMatrix< l, n > | operator* (const DMatrix< l, m > &a, const DMatrix< m, n > &b) |
template<unsigned int l, unsigned int m, unsigned int n> | |
DMatrix< l, n > | Multiply (const DMatrix< l, m > &a, const DMatrix< m, n > &b) |
template<unsigned int dims> | |
double | ScalProd (const DMatrix< dims, 1 > &p1, const DMatrix< dims, 1 > &p2) |
template<unsigned int zeilen, unsigned int spalten> | |
void | InitZero (DMatrix< zeilen, spalten > &x) |
matrices of double precision floating points
created for the 2006 Fitts' law experiment
Definition in file DMatrix.h.
void InitZero | ( | DMatrix< zeilen, spalten > & | x) |
Definition at line 244 of file DMatrix.h.
References DMatrix< zeilen, spalten >::Zero().
Referenced by Mean< double >::init(), MeanMinMax< _t >::init(), Var< double >::init(), and Corr< _t >::init().
double Len | ( | const DMatrix< dims, 1 > & | p) |
Definition at line 223 of file DMatrix.h.
Referenced by Linie::IstAufStrecke(), DMatrix< zeilen, spalten >::Normalize(), and Linie::SchnittPunktAufStrecke().
DMatrix<l,n> Multiply | ( | const DMatrix< l, m > & | a, |
const DMatrix< m, n > & | b | ||
) |
Definition at line 208 of file DMatrix.h.
References DMatrix< zeilen, spalten >::x.
DMatrix<l,n> operator* | ( | const DMatrix< l, m > & | a, |
const DMatrix< m, n > & | b | ||
) |
Definition at line 193 of file DMatrix.h.
References DMatrix< zeilen, spalten >::x.
std::ostream& operator<< | ( | std::ostream & | o, |
const DMatrix< zeilen, spalten > & | m | ||
) |
std::istream& operator>> | ( | std::istream & | in, |
DMatrix< zeilen, spalten > & | m | ||
) |
Definition at line 183 of file DMatrix.h.
References DMatrix< zeilen, spalten >::x.
double ScalProd | ( | const DMatrix< dims, 1 > & | p1, |
const DMatrix< dims, 1 > & | p2 | ||
) |
Definition at line 233 of file DMatrix.h.
Referenced by OpticalFlow::Particle::ToTheOutside().