| eLynx SDK
v3.0.1 C++ image processing API reference |
#include <SingleRowMatrix.h>

Public Member Functions | |
| SingleRowMatrix (IVector &iVector) | |
| SingleRowMatrix (const SingleRowMatrix &iOther) | |
| SingleRowMatrix & | operator= (SingleRowMatrix &iOther) |
| virtual uint32 | GetWidth () const |
| virtual uint32 | GetHeight () const |
| virtual const double & | operator() (uint32 iRow, uint32 iCol) const |
| virtual double & | operator() (uint32 iRow, uint32 iCol) |
| virtual void | SwapRows (uint32 iRow1, uint32 iRow2) |
| virtual void | SwapCols (uint32 iCol1, uint32 iCol2) |
Definition at line 35 of file SingleRowMatrix.h.
| eLynx::Math::SingleRowMatrix::SingleRowMatrix | ( | IVector & | iVector | ) |
Constructor, creates matrix adapter for specified vector.
| iVector | the vector object |
| eLynx::Math::SingleRowMatrix::SingleRowMatrix | ( | const SingleRowMatrix & | iOther | ) |
Copy constructor
| iOther | the object to copy |
| SingleRowMatrix& eLynx::Math::SingleRowMatrix::operator= | ( | SingleRowMatrix & | iOther | ) |
An assignement operator
| iOther | the object to copy |
| virtual uint32 eLynx::Math::SingleRowMatrix::GetWidth | ( | ) | const [inline, virtual] |
Returns the matrix width (number of columns) = size of the vector.
Implements eLynx::Math::IMatrix.
Definition at line 54 of file SingleRowMatrix.h.
| virtual uint32 eLynx::Math::SingleRowMatrix::GetHeight | ( | ) | const [inline, virtual] |
Returns the matrix height (number of rows) = 1
Implements eLynx::Math::IMatrix.
Definition at line 58 of file SingleRowMatrix.h.
| virtual const double& eLynx::Math::SingleRowMatrix::operator() | ( | uint32 | iRow, | |
| uint32 | iCol | |||
| ) | const [inline, virtual] |
Matrix content access operator. Can be used in form Matrix(r, c).
| iRow | the row index (matrix has only one row) | |
| iCol | the column index (vector index) |
Implements eLynx::Math::IMatrix.
Definition at line 64 of file SingleRowMatrix.h.
| virtual double& eLynx::Math::SingleRowMatrix::operator() | ( | uint32 | iRow, | |
| uint32 | iCol | |||
| ) | [inline, virtual] |
Matrix content access operator. Can be used in form Matrix(r, c).
| iRow | the row index (matrix has only one row) | |
| iCol | the column index (vector index) |
Implements eLynx::Math::IMatrix.
Definition at line 71 of file SingleRowMatrix.h.
| virtual void eLynx::Math::SingleRowMatrix::SwapRows | ( | uint32 | iRow1, | |
| uint32 | iRow2 | |||
| ) | [inline, virtual] |
Swaps specified rows. As the matrix has only one row, it does nothing.
Implements eLynx::Math::IMatrix.
Definition at line 76 of file SingleRowMatrix.h.
| virtual void eLynx::Math::SingleRowMatrix::SwapCols | ( | uint32 | iCol1, | |
| uint32 | iCol2 | |||
| ) | [inline, virtual] |
Swaps specified columns (vector values) of the matrix.
| iCol1 | the first column to swap | |
| iCol2 | the second column to swap |
Implements eLynx::Math::IMatrix.
Definition at line 81 of file SingleRowMatrix.h.