#include <MatrixN.hh>
Definition at line 29 of file MatrixN.hh.
Public Member Functions | |
Matrix () | |
Matrix (const Matrix< N > &other) | |
Matrix & | set (const size_t i, const size_t j, const double value) |
double | get (const size_t i, const size_t j) const |
Vector< N > | getRow (const size_t row) const |
Matrix< N > & | setRow (const size_t row, const Vector< N > &r) |
Vector< N > | getColumn (const size_t col) const |
Matrix< N > & | setColumn (const size_t col, const Vector< N > &c) |
Matrix< N > | transpose () const |
Matrix< N > | inverse () const |
Calculate inverse. | |
double | det () const |
Calculate determinant. | |
double | trace () const |
Calculate trace. | |
Matrix< N > | operator- () const |
Negate. | |
size_t | size () const |
Get dimensionality. | |
bool | isZero (double tolerance=1E-5) const |
Index-wise check for nullness, allowing for numerical precision. | |
bool | isEqual (Matrix< N > other) const |
Check for index-wise equality, allowing for numerical precision. | |
bool | isSymm () const |
Check for symmetry under transposition. | |
bool | isDiag () const |
Check that all off-diagonal elements are zero, allowing for numerical precision. | |
bool | operator== (const Matrix< N > &a) const |
bool | operator!= (const Matrix< N > &a) const |
bool | operator< (const Matrix< N > &a) const |
bool | operator<= (const Matrix< N > &a) const |
bool | operator> (const Matrix< N > &a) const |
bool | operator>= (const Matrix< N > &a) const |
Matrix< N > & | operator*= (const Matrix< N > &m) |
Matrix< N > & | operator*= (const double a) |
Matrix< N > & | operator/= (const double a) |
Matrix< N > & | operator+= (const Matrix< N > &m) |
Matrix< N > & | operator-= (const Matrix< N > &m) |
Static Public Member Functions | |
static Matrix< N > | mkZero () |
static Matrix< N > | mkDiag (Vector< N > diag) |
static Matrix< N > | mkIdentity () |
Protected Types | |
typedef Eigen::Matrix< double, N > | EMatrix |
Protected Attributes | |
EMatrix | _matrix |
Friends | |
template<size_t M> | |
Matrix< M > | add (const Matrix< M > &, const Matrix< M > &) |
template<size_t M> | |
Matrix< M > | multiply (const double, const Matrix< M > &) |
template<size_t M> | |
Matrix< M > | multiply (const Matrix< M > &, const Matrix< M > &) |
template<size_t M> | |
Vector< M > | multiply (const Matrix< M > &, const Vector< M > &) |
template<size_t M> | |
Matrix< M > | divide (const Matrix< M > &, const double) |
typedef Eigen::Matrix<double,N> EMatrix [protected] |
Definition at line 253 of file MatrixN.hh.
Matrix | ( | ) | [inline] |
static Matrix<N> mkZero | ( | ) | [inline, static] |
Definition at line 47 of file MatrixN.hh.
00047 { 00048 Matrix<N> rtn; 00049 for (size_t i = 0; i < N; ++i) { 00050 rtn.set(i, i, diag[i]); 00051 } 00052 return rtn; 00053 }
static Matrix<N> mkIdentity | ( | ) | [inline, static] |
Definition at line 55 of file MatrixN.hh.
00055 { 00056 Matrix<N> rtn; 00057 for (size_t i = 0; i < N; ++i) { 00058 rtn.set(i, i, 1); 00059 } 00060 return rtn; 00061 }
Matrix& set | ( | const size_t | i, | |
const size_t | j, | |||
const double | value | |||
) | [inline] |
Definition at line 74 of file MatrixN.hh.
Referenced by Sphericity::_calcSphericity(), Matrix< 4 >::mkDiag(), Matrix< 4 >::mkIdentity(), LorentzTransform::mkMatrix4(), and LorentzTransform::setBoost().
00074 { 00075 if (i < N && j < N) { 00076 _matrix(i, j) = value; 00077 } else { 00078 throw std::runtime_error("Attempted set access outside matrix bounds."); 00079 } 00080 return *this; 00081 }
double get | ( | const size_t | i, | |
const size_t | j | |||
) | const [inline] |
Definition at line 83 of file MatrixN.hh.
Referenced by Sphericity::_calcSphericity(), Rivet::diagonalize(), Rivet::fuzzyEquals(), LorentzTransform::mkMatrix4(), and Rivet::toString().
00083 { 00084 if (i < N && j < N) { 00085 return _matrix(i, j); 00086 } else { 00087 throw std::runtime_error("Attempted get access outside matrix bounds."); 00088 } 00089 }
Vector<N> getRow | ( | const size_t | row | ) | const [inline] |
Definition at line 91 of file MatrixN.hh.
00091 { 00092 Vector<N> rtn; 00093 for (size_t i = 0; i < N; ++i) { 00094 rtn.set(i, _matrix(row,i)); 00095 } 00096 return rtn; 00097 }
Definition at line 99 of file MatrixN.hh.
00099 { 00100 for (size_t i = 0; i < N; ++i) { 00101 _matrix(row,i) = r.get(i); 00102 } 00103 return *this; 00104 }
Vector<N> getColumn | ( | const size_t | col | ) | const [inline] |
Definition at line 106 of file MatrixN.hh.
Referenced by LorentzTransform::boost().
00106 { 00107 const Eigen::Vector<double,N> eVec = _matrix.column(col); 00108 Vector<N> rtn; 00109 for (size_t i = 0; i < N; ++i) { 00110 rtn.set(i, _matrix(i,col)); 00111 } 00112 return rtn; 00113 }
Definition at line 115 of file MatrixN.hh.
00115 { 00116 for (size_t i = 0; i < N; ++i) { 00117 _matrix(i,col) = c.get(i); 00118 } 00119 return *this; 00120 }
Matrix<N> transpose | ( | ) | const [inline] |
Definition at line 122 of file MatrixN.hh.
Referenced by Matrix< 4 >::isSymm(), and Rivet::transpose().
00122 { 00123 Matrix<N> tmp = *this; 00124 tmp._matrix.replaceWithAdjoint(); 00125 return tmp; 00126 }
Matrix<N> inverse | ( | ) | const [inline] |
Calculate inverse.
Definition at line 134 of file MatrixN.hh.
Referenced by Rivet::inverse(), LorentzTransform::inverse(), and LorentzTransform::rotate().
00134 { 00135 Matrix<N> tmp; 00136 tmp._matrix = _matrix.inverse(); 00137 return tmp; 00138 }
double det | ( | ) | const [inline] |
Calculate determinant.
Definition at line 141 of file MatrixN.hh.
00141 { 00142 return _matrix.determinant(); 00143 }
double trace | ( | ) | const [inline] |
Calculate trace.
Definition at line 146 of file MatrixN.hh.
Referenced by Rivet::trace().
00146 { 00147 double tr = 0.0; 00148 for (size_t i = 0; i < N; ++i) { 00149 tr += _matrix(i,i); 00150 } 00151 return tr; 00152 // return _matrix.trace(); 00153 }
Matrix<N> operator- | ( | ) | const [inline] |
Negate.
Definition at line 156 of file MatrixN.hh.
00156 { 00157 Matrix<N> rtn; 00158 rtn._matrix = -_matrix; 00159 return rtn; 00160 }
size_t size | ( | ) | const [inline] |
bool isZero | ( | double | tolerance = 1E-5 |
) | const [inline] |
Index-wise check for nullness, allowing for numerical precision.
Definition at line 168 of file MatrixN.hh.
Referenced by Rivet::isZero().
00168 { 00169 for (size_t i=0; i < N; ++i) { 00170 for (size_t j=0; j < N; ++j) { 00171 if (! Rivet::isZero(_matrix(i,j), tolerance) ) return false; 00172 } 00173 } 00174 return true; 00175 }
bool isEqual | ( | Matrix< N > | other | ) | const [inline] |
Check for index-wise equality, allowing for numerical precision.
Definition at line 178 of file MatrixN.hh.
Referenced by Matrix< 4 >::isSymm().
00178 { 00179 for (size_t i=0; i < N; ++i) { 00180 for (size_t j=i; j < N; ++j) { 00181 if (! Rivet::isZero(_matrix(i,j) - other._matrix(i,j)) ) return false; 00182 } 00183 } 00184 return true; 00185 }
bool isSymm | ( | ) | const [inline] |
Check for symmetry under transposition.
Definition at line 188 of file MatrixN.hh.
Referenced by Sphericity::_calcSphericity().
bool isDiag | ( | ) | const [inline] |
Check that all off-diagonal elements are zero, allowing for numerical precision.
Definition at line 193 of file MatrixN.hh.
00193 { 00194 for (size_t i=0; i < N; ++i) { 00195 for (size_t j=0; j < N; ++j) { 00196 if (i == j) continue; 00197 if (! Rivet::isZero(_matrix(i,j)) ) return false; 00198 } 00199 } 00200 return true; 00201 }
bool operator== | ( | const Matrix< N > & | a | ) | const [inline] |
bool operator!= | ( | const Matrix< N > & | a | ) | const [inline] |
bool operator< | ( | const Matrix< N > & | a | ) | const [inline] |
bool operator<= | ( | const Matrix< N > & | a | ) | const [inline] |
bool operator> | ( | const Matrix< N > & | a | ) | const [inline] |
bool operator>= | ( | const Matrix< N > & | a | ) | const [inline] |
Matrix<N>& operator*= | ( | const double | a | ) | [inline] |
Matrix<N>& operator/= | ( | const double | a | ) | [inline] |
Definition at line 254 of file MatrixN.hh.
Referenced by Rivet::add(), Matrix< 4 >::det(), Matrix< 4 >::get(), Matrix< 4 >::getColumn(), Matrix< 4 >::getRow(), Matrix< 4 >::inverse(), Matrix< 4 >::isDiag(), Matrix< 4 >::isEqual(), Matrix< 4 >::isZero(), Matrix< 4 >::Matrix(), Rivet::multiply(), Matrix< 4 >::operator!=(), Matrix< 4 >::operator*=(), Matrix< 4 >::operator+=(), Matrix< 4 >::operator-(), Matrix< 4 >::operator-=(), Matrix< 4 >::operator/=(), Matrix< 4 >::operator<(), Matrix< 4 >::operator<=(), Matrix< 4 >::operator==(), Matrix< 4 >::operator>(), Matrix< 4 >::operator>=(), Matrix< 4 >::set(), Matrix< 4 >::setColumn(), Matrix< 4 >::setRow(), Matrix< 4 >::trace(), and Matrix< 4 >::transpose().