Functions | |
template<class Element > | |
TMatrixT< Element > & | Add (TMatrixT< Element > &target, Element scalar, const TMatrixT< Element > &source) |
Modify addition: target += scalar * source. | |
template<class Element > | |
TMatrixT< Element > & | Add (TMatrixT< Element > &target, Element scalar, const TMatrixTSym< Element > &source) |
Modify addition: target += scalar * source. | |
template<class Element > | |
TVectorT< Element > & | Add (TVectorT< Element > &target, Element scalar, const TMatrixT< Element > &a, const TVectorT< Element > &source) |
Modify addition: target += scalar * A * source. | |
template<class Element > | |
TVectorT< Element > & | Add (TVectorT< Element > &target, Element scalar, const TMatrixTSparse< Element > &a, const TVectorT< Element > &source) |
Modify addition: target += A * source. | |
template<class Element > | |
TVectorT< Element > & | Add (TVectorT< Element > &target, Element scalar, const TMatrixTSym< Element > &a, const TVectorT< Element > &source) |
Modify addition: target += A * source. | |
template<class Element > | |
TVectorT< Element > & | Add (TVectorT< Element > &target, Element scalar, const TVectorT< Element > &source) |
Modify addition: target += scalar * source. | |
template<class Element > | |
TVectorT< Element > & | AddElemDiv (TVectorT< Element > &target, Element scalar, const TVectorT< Element > &source1, const TVectorT< Element > &source2) |
Modify addition: target += scalar * ElementDiv(source1,source2) . | |
template<class Element > | |
TVectorT< Element > & | AddElemDiv (TVectorT< Element > &target, Element scalar, const TVectorT< Element > &source1, const TVectorT< Element > &source2, const TVectorT< Element > &select) |
Modify addition: target += scalar * ElementDiv(source1,source2) only for those elements where select[i] != 0.0. | |
template<class Element > | |
TVectorT< Element > & | AddElemMult (TVectorT< Element > &target, Element scalar, const TVectorT< Element > &source1, const TVectorT< Element > &source2) |
Modify addition: target += scalar * ElementMult(source1,source2) . | |
template<class Element > | |
TVectorT< Element > & | AddElemMult (TVectorT< Element > &target, Element scalar, const TVectorT< Element > &source1, const TVectorT< Element > &source2, const TVectorT< Element > &select) |
Modify addition: target += scalar * ElementMult(source1,source2) only for those elements where select[i] != 0.0. | |
template<class Element > | |
void | AMultB (const Element *const ap, Int_t na, Int_t ncolsa, const Element *const bp, Int_t nb, Int_t ncolsb, Element *cp) |
Elementary routine to calculate matrix multiplication A*B. | |
template<class Element > | |
void | AMultBt (const Element *const ap, Int_t na, Int_t ncolsa, const Element *const bp, Int_t nb, Int_t ncolsb, Element *cp) |
Elementary routine to calculate matrix multiplication A*B^T. | |
template<class Element1 , class Element2 > | |
Bool_t | AreCompatible (const TMatrixT< Element1 > &m, const TVectorT< Element2 > &v, Int_t verbose=0) |
Check if m and v are both valid and have compatible shapes for M * v. | |
template<class Element1 , class Element2 > | |
Bool_t | AreCompatible (const TMatrixTBase< Element1 > &m1, const TMatrixTBase< Element2 > &m2, Int_t verbose=0) |
Check that matrice sm1 and m2 areboth valid and have identical shapes . | |
template<class Element1 , class Element2 > | |
Bool_t | AreCompatible (const TVectorT< Element1 > &v, const TMatrixT< Element2 > &m, Int_t verbose=0) |
Check if m and v are both valid and have compatible shapes for v * M. | |
template<class Element1 , class Element2 > | |
Bool_t | AreCompatible (const TVectorT< Element1 > &v1, const TVectorT< Element2 > &v2, Int_t verbose=0) |
Check if v1 and v2 are both valid and have the same shape. | |
template<class Element > | |
void | AtMultB (const Element *const ap, Int_t ncolsa, const Element *const bp, Int_t nb, Int_t ncolsb, Element *cp) |
Elementary routine to calculate matrix multiplication A^T*B. | |
template<class Element > | |
void | Compare (const TMatrixTBase< Element > &m1, const TMatrixTBase< Element > &m2) |
Compare two matrices and print out the result of the comparison. | |
template<class Element > | |
void | Compare (const TVectorT< Element > &source1, const TVectorT< Element > &source2) |
Compare two vectors and print out the result of the comparison. | |
template<class Element > | |
Element | Dot (const TVectorT< Element > &source1, const TVectorT< Element > &source2) |
return inner-produvt v1 . v2 | |
template<class Element > | |
Element | E2Norm (const TMatrixTBase< Element > &m1, const TMatrixTBase< Element > &m2) |
Square of the Euclidean norm of the difference between two matrices. | |
template<class Element > | |
TMatrixT< Element > & | ElementDiv (TMatrixT< Element > &target, const TMatrixT< Element > &source) |
Divide target by the source, element-by-element. | |
template<class Element > | |
TMatrixT< Element > & | ElementDiv (TMatrixT< Element > &target, const TMatrixTSym< Element > &source) |
Multiply target by the source, element-by-element. | |
template<class Element > | |
TVectorT< Element > & | ElementDiv (TVectorT< Element > &target, const TVectorT< Element > &source) |
Divide target by the source, element-by-element. | |
template<class Element > | |
TVectorT< Element > & | ElementDiv (TVectorT< Element > &target, const TVectorT< Element > &source, const TVectorT< Element > &select) |
Divide target by the source, element-by-element only where select[i] != 0.0. | |
template<class Element > | |
TMatrixT< Element > & | ElementMult (TMatrixT< Element > &target, const TMatrixT< Element > &source) |
Multiply target by the source, element-by-element. | |
template<class Element > | |
TMatrixT< Element > & | ElementMult (TMatrixT< Element > &target, const TMatrixTSym< Element > &source) |
Multiply target by the source, element-by-element. | |
template<class Element > | |
TVectorT< Element > & | ElementMult (TVectorT< Element > &target, const TVectorT< Element > &source) |
Multiply target by the source, element-by-element. | |
template<class Element > | |
TVectorT< Element > & | ElementMult (TVectorT< Element > &target, const TVectorT< Element > &source, const TVectorT< Element > &select) |
Multiply target by the source, element-by-element only where select[i] != 0.0. | |
template<class Element1 , class Element2 , class Element3 > | |
Element1 | Mult (const TVectorT< Element1 > &v1, const TMatrixT< Element2 > &m, const TVectorT< Element3 > &v2) |
Perform v1 * M * v2, a scalar result. | |
template<class Element > | |
TMatrixT< Element > | operator!= (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 != source2 | |
template<class Element > | |
TMatrixT< Element > | operator!= (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
logical operation source1 != source2 | |
template<class Element > | |
TMatrixT< Element > | operator!= (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 != source2 | |
template<class Element > | |
TMatrixT< Element > | operator&& (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
Logical AND. | |
template<class Element > | |
TMatrixT< Element > | operator&& (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
Logical AND. | |
template<class Element > | |
TMatrixT< Element > | operator&& (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
Logical AND. | |
template<class Element > | |
TVectorT< Element > | operator* (const TMatrixT< Element > &a, const TVectorT< Element > &source) |
return A * source | |
template<class Element > | |
TMatrixT< Element > | operator* (const TMatrixT< Element > &source, Element val) |
operation this = val*source | |
template<class Element > | |
TMatrixT< Element > | operator* (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
operation this = source1*source2 | |
template<class Element > | |
TMatrixT< Element > | operator* (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
operation this = source1*source2 | |
template<class Element > | |
TVectorT< Element > | operator* (const TMatrixTSparse< Element > &a, const TVectorT< Element > &source) |
return A * source | |
template<class Element > | |
TVectorT< Element > | operator* (const TMatrixTSym< Element > &a, const TVectorT< Element > &source) |
return A * source | |
template<class Element > | |
TMatrixT< Element > | operator* (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
operation this = source1*source2 | |
template<class Element > | |
TMatrixT< Element > | operator* (const TMatrixTSym< Element > &source1, const TMatrixTSym< Element > &source2) |
operation this = source1*source2 | |
template<class Element > | |
TVectorT< Element > | operator* (const TVectorT< Element > &source, Element val) |
template<class Element > | |
Element | operator* (const TVectorT< Element > &source1, const TVectorT< Element > &source2) |
Compute the scalar product. | |
template<class Element > | |
TMatrixT< Element > | operator* (Element val, const TMatrixT< Element > &source) |
operation this = val*source | |
template<class Element > | |
TVectorT< Element > | operator* (Element val, const TVectorT< Element > &source) |
return val * source | |
template<class Element > | |
TMatrixT< Element > | operator+ (const TMatrixT< Element > &source, Element val) |
operation this = source+val | |
template<class Element > | |
TMatrixT< Element > | operator+ (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
operation this = source1+source2 | |
template<class Element > | |
TMatrixT< Element > | operator+ (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
operation this = source1+source2 | |
template<class Element > | |
TMatrixT< Element > | operator+ (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
operation this = source1+source2 | |
template<class Element > | |
TVectorT< Element > | operator+ (const TVectorT< Element > &source1, const TVectorT< Element > &source2) |
Return source1+source2. | |
template<class Element > | |
TMatrixT< Element > | operator+ (Element val, const TMatrixT< Element > &source) |
operation this = val+source | |
template<class Element > | |
TMatrixT< Element > | operator- (const TMatrixT< Element > &source, Element val) |
operation this = source-val | |
template<class Element > | |
TMatrixT< Element > | operator- (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
operation this = source1-source2 | |
template<class Element > | |
TMatrixT< Element > | operator- (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
operation this = source1-source2 | |
template<class Element > | |
TMatrixT< Element > | operator- (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
operation this = source1-source2 | |
template<class Element > | |
TVectorT< Element > | operator- (const TVectorT< Element > &source1, const TVectorT< Element > &source2) |
Return source1-source2. | |
template<class Element > | |
TMatrixT< Element > | operator- (Element val, const TMatrixT< Element > &source) |
operation this = val-source | |
template<class Element > | |
TMatrixT< Element > | operator< (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 < source2 | |
template<class Element > | |
TMatrixT< Element > | operator< (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
logical operation source1 < source2 | |
template<class Element > | |
TMatrixT< Element > | operator< (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 < source2 | |
template<class Element > | |
TMatrixT< Element > | operator<= (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 <= source2 | |
template<class Element > | |
TMatrixT< Element > | operator<= (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
logical operation source1 <= source2 | |
template<class Element > | |
TMatrixT< Element > | operator<= (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 <= source2 | |
template<class Element > | |
Bool_t | operator== (const TMatrixTBase< Element > &m1, const TMatrixTBase< Element > &m2) |
Check to see if two matrices are identical. | |
template<class Element > | |
Bool_t | operator== (const TVectorT< Element > &source1, const TVectorT< Element > &source2) |
Check to see if two vectors are identical. | |
template<class Element > | |
TMatrixT< Element > | operator> (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 > source2 | |
template<class Element > | |
TMatrixT< Element > | operator> (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
logical operation source1 > source2 | |
template<class Element > | |
TMatrixT< Element > | operator> (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 > source2 | |
template<class Element > | |
TMatrixT< Element > | operator>= (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 >= source2 | |
template<class Element > | |
TMatrixT< Element > | operator>= (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
logical operation source1 >= source2 | |
template<class Element > | |
TMatrixT< Element > | operator>= (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
logical operation source1 >= source2 | |
template<class Element > | |
TMatrixT< Element > | operator|| (const TMatrixT< Element > &source1, const TMatrixT< Element > &source2) |
Logical OR. | |
template<class Element > | |
TMatrixT< Element > | operator|| (const TMatrixT< Element > &source1, const TMatrixTSym< Element > &source2) |
Logical OR. | |
template<class Element > | |
TMatrixT< Element > | operator|| (const TMatrixTSym< Element > &source1, const TMatrixT< Element > &source2) |
Logical OR. | |
template<class Element1 , class Element2 > | |
TMatrixT< Element1 > | OuterProduct (const TVectorT< Element1 > &v1, const TVectorT< Element2 > &v2) |
Return the matrix M = v1 * v2'. | |
template<class Element1 , class Element2 , class Element3 > | |
TMatrixT< Element1 > & | OuterProduct (TMatrixT< Element1 > &target, const TVectorT< Element2 > &v1, const TVectorT< Element3 > &v2) |
Return the matrix M = v1 * v2'. | |
template<class Element > | |
Bool_t | VerifyMatrixIdentity (const TMatrixTBase< Element > &m1, const TMatrixTBase< Element > &m2) |
template<class Element > | |
Bool_t | VerifyMatrixIdentity (const TMatrixTBase< Element > &m1, const TMatrixTBase< Element > &m2, Int_t verbose) |
template<class Element > | |
Bool_t | VerifyMatrixIdentity (const TMatrixTBase< Element > &m1, const TMatrixTBase< Element > &m2, Int_t verbose, Element maxDevAllow) |
Verify that elements of the two matrices are equal within MaxDevAllow . | |
template<class Element > | |
Bool_t | VerifyMatrixValue (const TMatrixTBase< Element > &m, Element val) |
template<class Element > | |
Bool_t | VerifyMatrixValue (const TMatrixTBase< Element > &m, Element val, Int_t verbose) |
template<class Element > | |
Bool_t | VerifyMatrixValue (const TMatrixTBase< Element > &m, Element val, Int_t verbose, Element maxDevAllow) |
Validate that all elements of matrix have value val within maxDevAllow. | |
template<class Element > | |
Bool_t | VerifyVectorIdentity (const TVectorT< Element > &m1, const TVectorT< Element > &m2) |
template<class Element > | |
Bool_t | VerifyVectorIdentity (const TVectorT< Element > &m1, const TVectorT< Element > &m2, Int_t verbose) |
template<class Element > | |
Bool_t | VerifyVectorIdentity (const TVectorT< Element > &m1, const TVectorT< Element > &m2, Int_t verbose, Element maxDevAllow) |
Verify that elements of the two vectors are equal within maxDevAllow . | |
template<class Element > | |
Bool_t | VerifyVectorValue (const TVectorT< Element > &m, Element val) |
template<class Element > | |
Bool_t | VerifyVectorValue (const TVectorT< Element > &m, Element val, Int_t verbose) |
template<class Element > | |
Bool_t | VerifyVectorValue (const TVectorT< Element > &m, Element val, Int_t verbose, Element maxDevAllow) |
Validate that all elements of vector have value val within maxDevAllow . | |
TMatrixT< Element > & TMatrixTAutoloadOps::Add | ( | TMatrixT< Element > & | target, |
Element | scalar, | ||
const TMatrixT< Element > & | source ) |
Modify addition: target += scalar * source.
Definition at line 2935 of file TMatrixT.cxx.
TMatrixT< Element > & TMatrixTAutoloadOps::Add | ( | TMatrixT< Element > & | target, |
Element | scalar, | ||
const TMatrixTSym< Element > & | source ) |
Modify addition: target += scalar * source.
Definition at line 2964 of file TMatrixT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::Add | ( | TVectorT< Element > & | target, |
Element | scalar, | ||
const TMatrixT< Element > & | a, | ||
const TVectorT< Element > & | source ) |
Modify addition: target += scalar * A * source.
NOTE: in case scalar=0, do target = A * source.
Definition at line 1615 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::Add | ( | TVectorT< Element > & | target, |
Element | scalar, | ||
const TMatrixTSparse< Element > & | a, | ||
const TVectorT< Element > & | source ) |
Modify addition: target += A * source.
NOTE: in case scalar=0, do target = A * source.
Definition at line 1765 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::Add | ( | TVectorT< Element > & | target, |
Element | scalar, | ||
const TMatrixTSym< Element > & | a, | ||
const TVectorT< Element > & | source ) |
Modify addition: target += A * source.
NOTE: in case scalar=0, do target = A * source.
Definition at line 1693 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::Add | ( | TVectorT< Element > & | target, |
Element | scalar, | ||
const TVectorT< Element > & | source ) |
Modify addition: target += scalar * source.
Definition at line 1586 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::AddElemDiv | ( | TVectorT< Element > & | target, |
Element | scalar, | ||
const TVectorT< Element > & | source1, | ||
const TVectorT< Element > & | source2 ) |
Modify addition: target += scalar * ElementDiv(source1,source2) .
Definition at line 1916 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::AddElemDiv | ( | TVectorT< Element > & | target, |
Element | scalar, | ||
const TVectorT< Element > & | source1, | ||
const TVectorT< Element > & | source2, | ||
const TVectorT< Element > & | select ) |
Modify addition: target += scalar * ElementDiv(source1,source2) only for those elements where select[i] != 0.0.
Definition at line 1970 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::AddElemMult | ( | TVectorT< Element > & | target, |
Element | scalar, | ||
const TVectorT< Element > & | source1, | ||
const TVectorT< Element > & | source2 ) |
Modify addition: target += scalar * ElementMult(source1,source2) .
Definition at line 1843 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::AddElemMult | ( | TVectorT< Element > & | target, |
Element | scalar, | ||
const TVectorT< Element > & | source1, | ||
const TVectorT< Element > & | source2, | ||
const TVectorT< Element > & | select ) |
Modify addition: target += scalar * ElementMult(source1,source2) only for those elements where select[i] != 0.0.
Definition at line 1876 of file TVectorT.cxx.
void TMatrixTAutoloadOps::AMultB | ( | const Element *const | ap, |
Int_t | na, | ||
Int_t | ncolsa, | ||
const Element *const | bp, | ||
Int_t | nb, | ||
Int_t | ncolsb, | ||
Element * | cp ) |
Elementary routine to calculate matrix multiplication A*B.
Definition at line 3080 of file TMatrixT.cxx.
void TMatrixTAutoloadOps::AMultBt | ( | const Element *const | ap, |
Int_t | na, | ||
Int_t | ncolsa, | ||
const Element *const | bp, | ||
Int_t | nb, | ||
Int_t | ncolsb, | ||
Element * | cp ) |
Elementary routine to calculate matrix multiplication A*B^T.
Definition at line 3127 of file TMatrixT.cxx.
Bool_t TMatrixTAutoloadOps::AreCompatible | ( | const TMatrixT< Element1 > & | m, |
const TVectorT< Element2 > & | v, | ||
Int_t | verbose = 0 ) |
Check if m and v are both valid and have compatible shapes for M * v.
Definition at line 2156 of file TVectorT.cxx.
Bool_t TMatrixTAutoloadOps::AreCompatible | ( | const TMatrixTBase< Element1 > & | m1, |
const TMatrixTBase< Element2 > & | m2, | ||
Int_t | verbose = 0 ) |
Check that matrice sm1 and m2 areboth valid and have identical shapes .
Definition at line 887 of file TMatrixTBase.cxx.
Bool_t TMatrixTAutoloadOps::AreCompatible | ( | const TVectorT< Element1 > & | v, |
const TMatrixT< Element2 > & | m, | ||
Int_t | verbose = 0 ) |
Check if m and v are both valid and have compatible shapes for v * M.
Definition at line 2182 of file TVectorT.cxx.
Bool_t TMatrixTAutoloadOps::AreCompatible | ( | const TVectorT< Element1 > & | v1, |
const TVectorT< Element2 > & | v2, | ||
Int_t | verbose = 0 ) |
Check if v1 and v2 are both valid and have the same shape.
Definition at line 2130 of file TVectorT.cxx.
void TMatrixTAutoloadOps::AtMultB | ( | const Element *const | ap, |
Int_t | ncolsa, | ||
const Element *const | bp, | ||
Int_t | nb, | ||
Int_t | ncolsb, | ||
Element * | cp ) |
Elementary routine to calculate matrix multiplication A^T*B.
Definition at line 3103 of file TMatrixT.cxx.
void TMatrixTAutoloadOps::Compare | ( | const TMatrixTBase< Element > & | m1, |
const TMatrixTBase< Element > & | m2 ) |
Compare two matrices and print out the result of the comparison.
Definition at line 914 of file TMatrixTBase.cxx.
void TMatrixTAutoloadOps::Compare | ( | const TVectorT< Element > & | source1, |
const TVectorT< Element > & | source2 ) |
Compare two vectors and print out the result of the comparison.
Definition at line 2208 of file TVectorT.cxx.
Element TMatrixTAutoloadOps::Dot | ( | const TVectorT< Element > & | source1, |
const TVectorT< Element > & | source2 ) |
return inner-produvt v1 . v2
Definition at line 1477 of file TVectorT.cxx.
Element TMatrixTAutoloadOps::E2Norm | ( | const TMatrixTBase< Element > & | m1, |
const TMatrixTBase< Element > & | m2 ) |
Square of the Euclidean norm of the difference between two matrices.
Definition at line 865 of file TMatrixTBase.cxx.
TMatrixT< Element > & TMatrixTAutoloadOps::ElementDiv | ( | TMatrixT< Element > & | target, |
const TMatrixT< Element > & | source ) |
Divide target by the source, element-by-element.
Definition at line 3024 of file TMatrixT.cxx.
TMatrixT< Element > & TMatrixTAutoloadOps::ElementDiv | ( | TMatrixT< Element > & | target, |
const TMatrixTSym< Element > & | source ) |
Multiply target by the source, element-by-element.
Definition at line 3052 of file TMatrixT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::ElementDiv | ( | TVectorT< Element > & | target, |
const TVectorT< Element > & | source ) |
Divide target by the source, element-by-element.
Definition at line 2074 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::ElementDiv | ( | TVectorT< Element > & | target, |
const TVectorT< Element > & | source, | ||
const TVectorT< Element > & | select ) |
Divide target by the source, element-by-element only where select[i] != 0.0.
Definition at line 2100 of file TVectorT.cxx.
TMatrixT< Element > & TMatrixTAutoloadOps::ElementMult | ( | TMatrixT< Element > & | target, |
const TMatrixT< Element > & | source ) |
Multiply target by the source, element-by-element.
Definition at line 2984 of file TMatrixT.cxx.
TMatrixT< Element > & TMatrixTAutoloadOps::ElementMult | ( | TMatrixT< Element > & | target, |
const TMatrixTSym< Element > & | source ) |
Multiply target by the source, element-by-element.
Definition at line 3004 of file TMatrixT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::ElementMult | ( | TVectorT< Element > & | target, |
const TVectorT< Element > & | source ) |
Multiply target by the source, element-by-element.
Definition at line 2031 of file TVectorT.cxx.
TVectorT< Element > & TMatrixTAutoloadOps::ElementMult | ( | TVectorT< Element > & | target, |
const TVectorT< Element > & | source, | ||
const TVectorT< Element > & | select ) |
Multiply target by the source, element-by-element only where select[i] != 0.0.
Definition at line 2051 of file TVectorT.cxx.
Element1 TMatrixTAutoloadOps::Mult | ( | const TVectorT< Element1 > & | v1, |
const TMatrixT< Element2 > & | m, | ||
const TVectorT< Element3 > & | v2 ) |
Perform v1 * M * v2, a scalar result.
Definition at line 1541 of file TVectorT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator!= | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 != source2
Definition at line 2841 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator!= | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
logical operation source1 != source2
Definition at line 2869 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator!= | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 != source2
Definition at line 2897 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator&& | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
Logical AND.
Definition at line 2465 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator&& | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
Logical AND.
Definition at line 2490 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator&& | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
Logical AND.
Definition at line 2515 of file TMatrixT.cxx.
TVectorT< Element > TMatrixTAutoloadOps::operator* | ( | const TMatrixT< Element > & | a, |
const TVectorT< Element > & | source ) |
return A * source
Definition at line 1433 of file TVectorT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator* | ( | const TMatrixT< Element > & | source, |
Element | val ) |
operation this = val*source
Definition at line 2415 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator* | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
operation this = source1*source2
Definition at line 2424 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator* | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
operation this = source1*source2
Definition at line 2434 of file TMatrixT.cxx.
TVectorT< Element > TMatrixTAutoloadOps::operator* | ( | const TMatrixTSparse< Element > & | a, |
const TVectorT< Element > & | source ) |
return A * source
Definition at line 1455 of file TVectorT.cxx.
TVectorT< Element > TMatrixTAutoloadOps::operator* | ( | const TMatrixTSym< Element > & | a, |
const TVectorT< Element > & | source ) |
return A * source
Definition at line 1444 of file TVectorT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator* | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
operation this = source1*source2
Definition at line 2444 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator* | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
operation this = source1*source2
Definition at line 2455 of file TMatrixT.cxx.
|
inline |
Definition at line 274 of file TVectorT.h.
Element TMatrixTAutoloadOps::operator* | ( | const TVectorT< Element > & | source1, |
const TVectorT< Element > & | source2 ) |
Compute the scalar product.
Definition at line 1395 of file TVectorT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator* | ( | Element | val, |
const TMatrixT< Element > & | source ) |
operation this = val*source
Definition at line 2404 of file TMatrixT.cxx.
TVectorT< Element > TMatrixTAutoloadOps::operator* | ( | Element | val, |
const TVectorT< Element > & | source ) |
return val * source
Definition at line 1466 of file TVectorT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator+ | ( | const TMatrixT< Element > & | source, |
Element | val ) |
operation this = source+val
Definition at line 2333 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator+ | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
operation this = source1+source2
Definition at line 2302 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator+ | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
operation this = source1+source2
Definition at line 2313 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator+ | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
operation this = source1+source2
Definition at line 2324 of file TMatrixT.cxx.
TVectorT< Element > TMatrixTAutoloadOps::operator+ | ( | const TVectorT< Element > & | source1, |
const TVectorT< Element > & | source2 ) |
Return source1+source2.
Definition at line 1411 of file TVectorT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator+ | ( | Element | val, |
const TMatrixT< Element > & | source ) |
operation this = val+source
Definition at line 2344 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator- | ( | const TMatrixT< Element > & | source, |
Element | val ) |
operation this = source-val
Definition at line 2384 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator- | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
operation this = source1-source2
Definition at line 2353 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator- | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
operation this = source1-source2
Definition at line 2364 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator- | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
operation this = source1-source2
Definition at line 2375 of file TMatrixT.cxx.
TVectorT< Element > TMatrixTAutoloadOps::operator- | ( | const TVectorT< Element > & | source1, |
const TVectorT< Element > & | source2 ) |
Return source1-source2.
Definition at line 1422 of file TVectorT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator- | ( | Element | val, |
const TMatrixT< Element > & | source ) |
operation this = val-source
Definition at line 2395 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator< | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 < source2
Definition at line 2704 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator< | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
logical operation source1 < source2
Definition at line 2704 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator< | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 < source2
Definition at line 2704 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator<= | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 <= source2
Definition at line 2704 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator<= | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
logical operation source1 <= source2
Definition at line 2704 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator<= | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 <= source2
Definition at line 2704 of file TMatrixT.cxx.
Bool_t TMatrixTAutoloadOps::operator== | ( | const TMatrixTBase< Element > & | m1, |
const TMatrixTBase< Element > & | m2 ) |
Check to see if two matrices are identical.
Definition at line 854 of file TMatrixTBase.cxx.
Bool_t TMatrixTAutoloadOps::operator== | ( | const TVectorT< Element > & | source1, |
const TVectorT< Element > & | source2 ) |
Check to see if two vectors are identical.
Definition at line 1385 of file TVectorT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator> | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 > source2
Definition at line 2583 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator> | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
logical operation source1 > source2
Definition at line 2611 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator> | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 > source2
Definition at line 2639 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator>= | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 >= source2
Definition at line 2648 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator>= | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
logical operation source1 >= source2
Definition at line 2676 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator>= | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
logical operation source1 >= source2
Definition at line 2704 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator|| | ( | const TMatrixT< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
Logical OR.
Definition at line 2524 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator|| | ( | const TMatrixT< Element > & | source1, |
const TMatrixTSym< Element > & | source2 ) |
Logical OR.
Definition at line 2549 of file TMatrixT.cxx.
TMatrixT< Element > TMatrixTAutoloadOps::operator|| | ( | const TMatrixTSym< Element > & | source1, |
const TMatrixT< Element > & | source2 ) |
Logical OR.
Definition at line 2574 of file TMatrixT.cxx.
TMatrixT< Element1 > TMatrixTAutoloadOps::OuterProduct | ( | const TVectorT< Element1 > & | v1, |
const TVectorT< Element2 > & | v2 ) |
Return the matrix M = v1 * v2'.
Definition at line 1494 of file TVectorT.cxx.
TMatrixT< Element1 > & TMatrixTAutoloadOps::OuterProduct | ( | TMatrixT< Element1 > & | target, |
const TVectorT< Element2 > & | v1, | ||
const TVectorT< Element3 > & | v2 ) |
Return the matrix M = v1 * v2'.
Definition at line 1510 of file TVectorT.cxx.
Bool_t TMatrixTAutoloadOps::VerifyMatrixIdentity | ( | const TMatrixTBase< Element > & | m1, |
const TMatrixTBase< Element > & | m2 ) |
Definition at line 248 of file TMatrixTBase.h.
Bool_t TMatrixTAutoloadOps::VerifyMatrixIdentity | ( | const TMatrixTBase< Element > & | m1, |
const TMatrixTBase< Element > & | m2, | ||
Int_t | verbose ) |
Definition at line 246 of file TMatrixTBase.h.
Bool_t TMatrixTAutoloadOps::VerifyMatrixIdentity | ( | const TMatrixTBase< Element > & | m1, |
const TMatrixTBase< Element > & | m2, | ||
Int_t | verbose, | ||
Element | maxDevAllow ) |
Verify that elements of the two matrices are equal within MaxDevAllow .
Definition at line 1011 of file TMatrixTBase.cxx.
Bool_t TMatrixTAutoloadOps::VerifyMatrixValue | ( | const TMatrixTBase< Element > & | m, |
Element | val ) |
Definition at line 242 of file TMatrixTBase.h.
Bool_t TMatrixTAutoloadOps::VerifyMatrixValue | ( | const TMatrixTBase< Element > & | m, |
Element | val, | ||
Int_t | verbose ) |
Definition at line 240 of file TMatrixTBase.h.
Bool_t TMatrixTAutoloadOps::VerifyMatrixValue | ( | const TMatrixTBase< Element > & | m, |
Element | val, | ||
Int_t | verbose, | ||
Element | maxDevAllow ) |
Validate that all elements of matrix have value val within maxDevAllow.
Definition at line 968 of file TMatrixTBase.cxx.
Bool_t TMatrixTAutoloadOps::VerifyVectorIdentity | ( | const TVectorT< Element > & | m1, |
const TVectorT< Element > & | m2 ) |
Definition at line 318 of file TVectorT.h.
Bool_t TMatrixTAutoloadOps::VerifyVectorIdentity | ( | const TVectorT< Element > & | m1, |
const TVectorT< Element > & | m2, | ||
Int_t | verbose ) |
Definition at line 316 of file TVectorT.h.
Bool_t TMatrixTAutoloadOps::VerifyVectorIdentity | ( | const TVectorT< Element > & | m1, |
const TVectorT< Element > & | m2, | ||
Int_t | verbose, | ||
Element | maxDevAllow ) |
Verify that elements of the two vectors are equal within maxDevAllow .
Definition at line 2296 of file TVectorT.cxx.
Bool_t TMatrixTAutoloadOps::VerifyVectorValue | ( | const TVectorT< Element > & | m, |
Element | val ) |
Definition at line 313 of file TVectorT.h.
Bool_t TMatrixTAutoloadOps::VerifyVectorValue | ( | const TVectorT< Element > & | m, |
Element | val, | ||
Int_t | verbose ) |
Definition at line 311 of file TVectorT.h.