![]() |
GeneralBrokenLines
Rev: 2.2.0
|
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. More... | |
| VVector | getVec (unsigned int len, unsigned int start=0) const |
| Get part of vector. More... | |
| void | putVec (const VVector &aVector, unsigned int start=0) |
| Put part of vector. More... | |
| double & | operator() (unsigned int i) |
| access element (i) More... | |
| double | operator() (unsigned int i) const |
| access element (i) More... | |
| unsigned int | getNumRows () const |
| Get number of rows. More... | |
| void | print () const |
| Print vector. More... | |
| VVector | operator- (const VVector &aVector) const |
| Subtraction Vector-Vector. More... | |
| VVector & | operator= (const VVector &aVector) |
| Assignment Vector=Vector. More... | |
Private Attributes | |
| unsigned int | numRows |
| Number of rows. More... | |
| std::vector< double > | theVec |
| Data. More... | |
| gbl::VVector::VVector | ( | const unsigned int | nRows = 0 | ) |
Definition at line 246 of file VMatrix.cpp.
| gbl::VVector::VVector | ( | const VVector & | aVector | ) |
Definition at line 250 of file VMatrix.cpp.
|
virtual |
Definition at line 255 of file VMatrix.cpp.
| unsigned int gbl::VVector::getNumRows | ( | ) | const |
Get number of rows.
Definition at line 293 of file VMatrix.cpp.
References numRows.
Referenced by operator=().
| VVector gbl::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 273 of file VMatrix.cpp.
References theVec.
Referenced by gbl::BorderedBandMatrix::solveAndInvertBorderedBand().
|
inline |
|
inline |
Subtraction Vector-Vector.
Definition at line 312 of file VMatrix.cpp.
Assignment Vector=Vector.
Definition at line 321 of file VMatrix.cpp.
References getNumRows(), numRows, and theVec.
| void gbl::VVector::print | ( | ) | const |
Print vector.
Definition at line 298 of file VMatrix.cpp.
References numRows, and theVec.
Referenced by gbl::GblTrajectory::printTrajectory().
| void gbl::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 284 of file VMatrix.cpp.
References numRows, and theVec.
Referenced by gbl::BorderedBandMatrix::solveAndInvertBorderedBand().
| void gbl::VVector::resize | ( | const unsigned int | nRows | ) |
Resize vector.
| [in] | nRows | Number of rows. |
Definition at line 262 of file VMatrix.cpp.
References numRows, and theVec.
Referenced by gbl::GblTrajectory::buildLinearEquationSystem().
|
private |
Number of rows.
Definition at line 58 of file VMatrix.h.
Referenced by getNumRows(), operator-(), operator=(), print(), putVec(), and resize().
|
private |
Data.
Definition at line 59 of file VMatrix.h.
Referenced by getVec(), operator()(), operator-(), operator=(), print(), putVec(), and resize().