|
The Vish Visualization Shell 0.3
Vish
|
SubMatrix is a Matrix with row R and column C deleted. More...
#include <elementary/eagle/Matrix.hpp>
Public Member Functions | |
| const value_type & | operator() (int i, int j) const |
| Element access operation. | |
| SubMatrix (const Matrix &MySuperMatrix) | |
| Construct from some matrix. | |
SubMatrix is a Matrix with row R and column C deleted.
The SubMatrix shares storage with a given larger matrix, no element copying occurs. The SubMatrix just provides another indexing scheme to the original data storage.
Note that it stores a reference to the original matrix, so the original matrix's lifetime must supercede this one!
|
inline |
Construct from some matrix.
This matrix must exist through the lifetime of this SubMatrix because we store a refererence here.