|
Jet
v1.3.3
|
Matrix expression for matrix-matrix multiplication. More...
#include <jet/matrix_expression.h>
Public Member Functions | |
| MatrixMul (const E1 &u, const E2 &v) | |
| Size2 | size () const |
| Size of the matrix. More... | |
| size_t | rows () const |
| Number of rows. More... | |
| size_t | cols () const |
| Number of columns. More... | |
| T | operator() (size_t i, size_t j) const |
| Returns matrix element at (i, j). More... | |
Public Member Functions inherited from jet::MatrixExpression< T, MatrixMul< T, E1, E2 > > | |
| Size2 | size () const |
| Size of the matrix. More... | |
| size_t | rows () const |
| Number of rows. More... | |
| size_t | cols () const |
| Number of columns. More... | |
| const MatrixMul< T, E1, E2 > & | operator() () const |
| Returns actual implementation (the subclass). More... | |
Matrix expression for matrix-matrix multiplication.
This matrix expression represents a matrix-matrix operation that takes two input matrices.
| jet::MatrixMul< T, E1, E2 >::MatrixMul | ( | const E1 & | u, |
| const E2 & | v | ||
| ) |
Constructs matrix-matrix multiplication expression for given two input matrices.
| size_t jet::MatrixMul< T, E1, E2 >::cols | ( | ) | const |
Number of columns.
| T jet::MatrixMul< T, E1, E2 >::operator() | ( | size_t | i, |
| size_t | j | ||
| ) | const |
Returns matrix element at (i, j).
| size_t jet::MatrixMul< T, E1, E2 >::rows | ( | ) | const |
Number of rows.
| Size2 jet::MatrixMul< T, E1, E2 >::size | ( | ) | const |
Size of the matrix.
1.8.18