|
AbstractLinAlgPack: C++ Interfaces For Vectors, Matrices And Related Linear Algebra Objects
Version of the Day
|
This template class defines the storage for a concrete matrix class that operations are based on. More...
#include <AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp>

Public Member Functions | |
| size_type | rows () const |
| | |
| size_type | cols () const |
| | |
| MatrixOp & | operator= (const MatrixOp &m) |
| | |
Representation access | |
| MatrixWithOpConcreteEncap () | |
| The compiler did not generate this default constructor. | |
| MatrixWithOpConcreteEncap (const M &m) | |
| This constructor will have to be overridden. | |
| M & | m () |
| Get the underlying M object. | |
| const M & | m () const |
| | |
This template class defines the storage for a concrete matrix class that operations are based on.
The default copy constructor and assignment operator are allowed.
Definition at line 55 of file AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp.
| AbstractLinAlgPack::MatrixWithOpConcreteEncap< M >::MatrixWithOpConcreteEncap | ( | ) | [inline] |
The compiler did not generate this default constructor.
Definition at line 64 of file AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp.
| AbstractLinAlgPack::MatrixWithOpConcreteEncap< M >::MatrixWithOpConcreteEncap | ( | const M & | m | ) | [inline] |
This constructor will have to be overridden.
Definition at line 68 of file AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp.
| M& AbstractLinAlgPack::MatrixWithOpConcreteEncap< M >::m | ( | ) | [inline] |
Get the underlying M object.
Definition at line 72 of file AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp.
| const M& AbstractLinAlgPack::MatrixWithOpConcreteEncap< M >::m | ( | ) | const [inline] |
Definition at line 77 of file AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp.
| size_type AbstractLinAlgPack::MatrixWithOpConcreteEncap< M >::rows | ( | ) | const [virtual] |
Reimplemented from AbstractLinAlgPack::MatrixBase.
Definition at line 106 of file AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp.
| size_type AbstractLinAlgPack::MatrixWithOpConcreteEncap< M >::cols | ( | ) | const [virtual] |
Reimplemented from AbstractLinAlgPack::MatrixBase.
Definition at line 111 of file AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp.
| MatrixOp & AbstractLinAlgPack::MatrixWithOpConcreteEncap< M >::operator= | ( | const MatrixOp & | m | ) | [virtual] |
Reimplemented from AbstractLinAlgPack::MatrixOp.
Definition at line 116 of file AbstractLinAlgPack_MatrixWithOpConcreteEncap.hpp.
1.7.6.1