Simple Vector based on std::vector<double> More...
#include <VMatrix.h>
Public Member Functions | |
| VVector (const unsigned int nRows=0) | |
| VVector (const VVector &aVector) | |
| virtual | ~VVector () |
| void | resize (const unsigned int nRows) |
| Resize vector. | |
| VVector | getVec (unsigned int len, unsigned int start=0) const |
| Get part of vector. | |
| void | putVec (const VVector &aVector, unsigned int start=0) |
| Put part of vector. | |
| double & | operator() (unsigned int i) |
| access element (i) | |
| double | operator() (unsigned int i) const |
| access element (i) | |
| unsigned int | getNumRows () const |
| Get number of rows. | |
| void | print () const |
| Print vector. | |
| VVector | operator- (const VVector &aVector) const |
| Subtraction Vector-Vector. | |
Private Attributes | |
| unsigned int | numRows |
| Number of rows. | |
| std::vector< double > | theVec |
| Data. | |
| VVector::VVector | ( | const unsigned int | nRows = 0 | ) |
Definition at line 206 of file VMatrix.cpp.
| VVector::VVector | ( | const VVector & | aVector | ) |
Definition at line 210 of file VMatrix.cpp.
|
virtual |
Definition at line 215 of file VMatrix.cpp.
| unsigned int VVector::getNumRows | ( | ) | const |
Get number of rows.
Definition at line 253 of file VMatrix.cpp.
References numRows.
| VVector VVector::getVec | ( | unsigned int | len, |
| unsigned int | start = 0 |
||
| ) | const |
Get part of vector.
| [in] | len | Length of part. |
| [in] | start | Offset of part. |
Definition at line 233 of file VMatrix.cpp.
References theVec.
Referenced by BorderedBandMatrix::solveAndInvertBorderedBand().
|
inline |
|
inline |
Subtraction Vector-Vector.
Definition at line 272 of file VMatrix.cpp.
| void VVector::print | ( | ) | const |
| void VVector::putVec | ( | const VVector & | aVector, |
| unsigned int | start = 0 |
||
| ) |
Put part of vector.
| [in] | aVector | Vector with part. |
| [in] | start | Offset of part. |
Definition at line 244 of file VMatrix.cpp.
References numRows, and theVec.
Referenced by BorderedBandMatrix::solveAndInvertBorderedBand().
| void VVector::resize | ( | const unsigned int | nRows | ) |
Resize vector.
| [in] | nRows | Number of rows. |
Definition at line 222 of file VMatrix.cpp.
References numRows, and theVec.
Referenced by GblTrajectory::buildLinearEquationSystem().
|
private |
Number of rows.
Definition at line 32 of file VMatrix.h.
Referenced by getNumRows(), operator-(), print(), putVec(), and resize().
|
private |
Data.
Definition at line 33 of file VMatrix.h.
Referenced by getVec(), operator()(), operator-(), print(), putVec(), and resize().
1.8.1