|
| template<class Form, class Type> |
| const Type & | max (const Matrix< Form, Type > &mat) |
| | Find max value in Matrix.
|
| template<class Form, class Type> |
| const Type & | min (const Matrix< Form, Type > &mat) |
| | Find min value in Matrix.
|
| template<class Form, class Type> |
| MinMax< Type > | minMax (const Matrix< Form, Type > &mat) |
| | Find the min/max values of Matrix.
|
| template<class Form, class Type> |
| Form | operator- (const Matrix< Form, Type > &mat) |
| | Matrix negation.
|
| template<class Form1, class Form2, class Type> |
| Form1 | operator+ (const Matrix< Form1, Type > &A, const Matrix< Form2, Type > &B) |
| | Matrix addition. Returns Matrix of the same form as the first parameter.
|
| template<class Form1, class Form2, class Type> |
| Form1 | operator- (const Matrix< Form1, Type > &A, const Matrix< Form2, Type > &B) |
| | Matrix subtraction. Returns Matrix of the same form as the first parameter.
|
| template<class Form, class Type> |
| Form | operator* (const Type &s, const Matrix< Form, Type > &mat) |
| | Scalar multiplication of Matrix.
|
| template<class Form, class Type> |
| Form | operator* (const Matrix< Form, Type > &mat, const Type &s) |
| | Scalar multiplication of Matrix.
|
| template<class Form, class Type> |
| Form | operator+ (const Type &s, const Matrix< Form, Type > &mat) |
| | Scalar addition of Matrix.
|
| template<class Form, class Type> |
| Form | operator+ (const Matrix< Form, Type > &mat, const Type &s) |
| | Scalar addition of Matrix.
|
| template<class Form, class Type> |
| Form | operator- (const Type &s, const Matrix< Form, Type > &mat) |
| | Scalar subtraction of Matrix.
|
| template<class Form, class Type> |
| Form | operator- (const Matrix< Form, Type > &mat, const Type &s) |
| | Scalar subtraction of Matrix.
|
| template<class Form, class Type> |
| Form | operator/ (const Matrix< Form, Type > &mat, const Type &s) |
| | Scalar division of Matrix.
|
| template<class Form1, class Form2, class Type> |
| typeOfInnerProduct< Type, Form1, Form2 >::type | operator* (const Matrix< Form1, Type > &A, const Matrix< Form2, Type > &B) |
| | Matrix-Matrix multiplication using ikj-algorithm.
|
| template<class Form1, class Form2, class Type> |
| typeOfInnerProduct< Type, Form1, Form2 >::type | operator& (const Matrix< Form1, Type > &AT, const Matrix< Form2, Type > &B) |
| | Implicit inner product of Matrix-Matrix, equivalent to A.T()*B.
|
| template<class Form1, class Form2, class Type> |
| typeOfInnerProduct< Type, Form1, Form2 >::type | operator^ (const Matrix< Form1, Type > &A, const Matrix< Form2, Type > &BT) |
| | Implicit outer product of Matrix-Matrix, equivalent to A*B.T().
|
Original source file Matrix.C
Definition in file Matrix.C.