![]() |
GeneralBrokenLines V03-01-04
using EIGEN
|
Simple Matrix based on std::vector<double> More...
#include <VMatrix.h>
Public Member Functions | |
| VMatrix (const unsigned int nRows=0, const unsigned int nCols=0) | |
| VMatrix (const VMatrix &aMatrix) | |
| virtual | ~VMatrix () |
| void | resize (const unsigned int nRows, const unsigned int nCols) |
| Resize Matrix. More... | |
| void | setZero () |
| Set content to 0. More... | |
| VMatrix | transpose () const |
| Get transposed matrix. More... | |
| double & | operator() (unsigned int i, unsigned int j) |
| access element (i,j) More... | |
| double | operator() (unsigned int i, unsigned int j) const |
| access element (i,j) More... | |
| unsigned int | getNumRows () const |
| Get number of rows. More... | |
| unsigned int | getNumCols () const |
| Get number of columns. More... | |
| void | print () const |
| Print matrix. More... | |
| VVector | operator* (const VVector &aVector) const |
| Multiplication Matrix*Vector. More... | |
| VMatrix | operator* (const VMatrix &aMatrix) const |
| Multiplication Matrix*Matrix. More... | |
| VMatrix | operator+ (const VMatrix &aMatrix) const |
| Addition Matrix+Matrix. More... | |
| VMatrix & | operator= (const VMatrix &aMatrix) |
| Assignment Matrix=Matrix. More... | |
Private Attributes | |
| unsigned int | numRows |
| Number of rows. More... | |
| unsigned int | numCols |
| Number of columns. More... | |
| std::vector< double > | theVec |
| Data. More... | |
| gbl::VMatrix::VMatrix | ( | const unsigned int | nRows = 0, |
| const unsigned int | nCols = 0 |
||
| ) |
Definition at line 37 of file VMatrix.cpp.
| gbl::VMatrix::VMatrix | ( | const VMatrix & | aMatrix | ) |
Definition at line 41 of file VMatrix.cpp.
|
virtual |
Definition at line 47 of file VMatrix.cpp.
| unsigned int gbl::VMatrix::getNumCols | ( | ) | const |
Get number of columns.
Definition at line 92 of file VMatrix.cpp.
References numCols.
Referenced by gbl::VSymMatrix::operator*(), operator=(), and gbl::BorderedBandMatrix::solveBand().
| unsigned int gbl::VMatrix::getNumRows | ( | ) | const |
Get number of rows.
Definition at line 84 of file VMatrix.cpp.
References numRows.
Referenced by operator=(), and gbl::BorderedBandMatrix::solveBand().
|
inline |
|
inline |
Multiplication Matrix*Matrix.
Definition at line 126 of file VMatrix.cpp.
Multiplication Matrix*Vector.
Definition at line 113 of file VMatrix.cpp.
Addition Matrix+Matrix.
Definition at line 142 of file VMatrix.cpp.
Assignment Matrix=Matrix.
Definition at line 153 of file VMatrix.cpp.
References getNumCols(), getNumRows(), numCols, numRows, and theVec.
| void gbl::VMatrix::print | ( | ) | const |
Print matrix.
Definition at line 97 of file VMatrix.cpp.
References numCols, numRows, and theVec.
Referenced by gbl::BorderedBandMatrix::printMatrix().
| void gbl::VMatrix::resize | ( | const unsigned int | nRows, |
| const unsigned int | nCols | ||
| ) |
Resize Matrix.
| [in] | nRows | Number of rows. |
| [in] | nCols | Number of columns. |
Definition at line 55 of file VMatrix.cpp.
References numCols, numRows, and theVec.
Referenced by gbl::BorderedBandMatrix::resize().
| void gbl::VMatrix::setZero | ( | ) |
Set content to 0.
Definition at line 62 of file VMatrix.cpp.
References theVec.
Referenced by gbl::BorderedBandMatrix::setZero().
| VMatrix gbl::VMatrix::transpose | ( | ) | const |
Get transposed matrix.
Definition at line 70 of file VMatrix.cpp.
References numCols, numRows, and theVec.
Referenced by gbl::BorderedBandMatrix::solveAndInvertBorderedBand().
|
private |
Number of columns.
Definition at line 83 of file VMatrix.h.
Referenced by getNumCols(), operator()(), operator*(), operator+(), operator=(), print(), resize(), and transpose().
|
private |
Number of rows.
Definition at line 82 of file VMatrix.h.
Referenced by getNumRows(), operator*(), operator+(), operator=(), print(), resize(), and transpose().
|
private |
Data.
Definition at line 84 of file VMatrix.h.
Referenced by operator()(), operator*(), operator+(), operator=(), print(), resize(), setZero(), and transpose().