Go to the source code of this file.
Compounds | |
class | vnl_diag_matrix |
Functions | |
template<class T> vcl_ostream & | operator<< (vcl_ostream &, vnl_diag_matrix< T > const &) |
template<class T> vnl_matrix< T > | operator * (vnl_matrix< T > const &A, vnl_diag_matrix< T > const &D) |
template<class T> vnl_matrix< T > | operator * (vnl_diag_matrix< T > const &D, vnl_matrix< T > const &A) |
template<class T> vnl_matrix< T > | operator+ (vnl_matrix< T > const &A, vnl_diag_matrix< T > const &D) |
template<class T> vnl_matrix< T > | operator+ (vnl_diag_matrix< T > const &D, vnl_matrix< T > const &A) |
template<class T> vnl_matrix< T > | operator- (vnl_matrix< T > const &A, vnl_diag_matrix< T > const &D) |
template<class T> vnl_matrix< T > | operator- (vnl_diag_matrix< T > const &D, vnl_matrix< T > const &A) |
template<class T> vnl_vector< T > | operator * (vnl_diag_matrix< T > const &D, vnl_vector< T > const &A) |
template<class T> vnl_vector< T > | operator * (vnl_vector< T > const &A, vnl_diag_matrix< T > const &D) |
Modifications IMS (Manchester) 16/03/2001: Tidied up the documentation + added binary_io
Definition in file vnl_diag_matrix.h.
|
Multiply a Vector by a vnl_diag_matrix.\ n flops. Definition at line 271 of file vnl_diag_matrix.h. |
|
Multiply a vnl_diag_matrix by a Vector.\ n flops. Definition at line 263 of file vnl_diag_matrix.h. |
|
Multiply a vnl_diag_matrix by a Matrix.\ Just scales the rows - mn flops. Definition at line 199 of file vnl_diag_matrix.h. |
|
Multiply a Matrix by a vnl_diag_matrix.\ Just scales the columns - mn flops. Definition at line 187 of file vnl_diag_matrix.h. |
|
Add a Matrix to a vnl_diag_matrix.\ n adds, mn copies. Definition at line 225 of file vnl_diag_matrix.h. References vnl_diag_matrix< T >::data_block(), and vnl_diag_matrix< T >::n(). |
|
Add a vnl_diag_matrix to a Matrix.\ n adds, mn copies. Definition at line 212 of file vnl_diag_matrix.h. |
|
Subtract a Matrix from a vnl_diag_matrix.\ n adds, mn copies. Definition at line 246 of file vnl_diag_matrix.h. |
|
Subtract a vnl_diag_matrix from a Matrix.\ n adds, mn copies. Definition at line 233 of file vnl_diag_matrix.h. |
|
|