Go to the source code of this file.
|
| namespace | Foam |
| | Namespace for OpenFOAM.
|
|
| template<class Form, class Type> |
| tmp< Field< Type > > | operator* (const Matrix< Form, Type > &mat, const UList< Type > &x) |
| | Matrix-vector multiplication (A * x), where x is a column vector.
|
| template<class Form, class Type, class Addr> |
| tmp< Field< Type > > | operator* (const Matrix< Form, Type > &mat, const IndirectListBase< Type, Addr > &x) |
| | Matrix-vector multiplication (A * x), where x is a column vector.
|
| template<class Form, class Type> |
| tmp< Field< Type > > | operator* (const UList< Type > &x, const Matrix< Form, Type > &mat) |
| | Vector-Matrix multiplication (x * A), where x is a row vector.
|
| template<class Form, class Type, class Addr> |
| tmp< Field< Type > > | operator* (const IndirectListBase< Type, Addr > &x, const Matrix< Form, Type > &mat) |
| | Vector-Matrix multiplication (x * A), where x is a row vector.
|
Original source file MatrixI.H
Definition in file MatrixI.H.