Bayesian Filtering Library Generated from SVN r
|
Class RowVectorWrapper. More...
#include <vector_wrapper.h>
Public Member Functions | |
RowVector_Wrapper () | |
Constructor. More... | |
virtual | ~RowVector_Wrapper () |
Destructor. More... | |
virtual void | resize (int num_cols)=0 |
resize | |
virtual void | assign (int newsize, double value)=0 |
assign | |
virtual unsigned int | rows () const =0 |
Ask number of rows. | |
virtual unsigned int | columns () const =0 |
Ask numbers of columns (=1) | |
virtual unsigned int | capacity () const =0 |
Ask numbers of capacity. | |
virtual MyRowVector | vectorAdd (const MyRowVector &v2) const =0 |
join two vectors | |
virtual double | operator() (unsigned int) const =0 |
element indexing | |
virtual double & | operator() (unsigned int)=0 |
element indexing | |
virtual bool | operator== (const MyRowVector &a) const =0 |
Operator ==. | |
virtual MyRowVector & | operator= (const MyRowVector &a)=0 |
operator = | |
virtual MyRowVector & | operator= (double a)=0 |
Initialise all elements to a. | |
virtual MyRowVector & | operator+= (const MyRowVector &a)=0 |
Operators. | |
virtual MyRowVector & | operator-= (const MyRowVector &a)=0 |
Operators. | |
virtual MyRowVector | operator+ (const MyRowVector &a) const =0 |
Operators. | |
virtual MyRowVector | operator- (const MyRowVector &a) const =0 |
Operators. | |
virtual MyRowVector & | operator+= (double b)=0 |
Operators. | |
virtual MyRowVector & | operator-= (double b)=0 |
Operators. | |
virtual MyRowVector & | operator*= (double b)=0 |
Operators. | |
virtual MyRowVector & | operator/= (double b)=0 |
Operators. | |
virtual MyRowVector | operator+ (double b) const =0 |
Operators. | |
virtual RowVector | operator- (double b) const =0 |
Operators. | |
virtual MyRowVector | operator* (double b) const =0 |
Operators. | |
virtual RowVector | operator/ (double b) const =0 |
Operators. | |
virtual double | operator* (const MyColumnVector &a) const =0 |
Operators. | |
virtual MyRowVector | sub (int j_start, int j_end) const =0 |
get sub matrix | |
virtual MyColumnVector | transpose () const =0 |
get transpose | |
Class RowVectorWrapper.
Definition at line 144 of file vector_wrapper.h.
|
inline |
Constructor.
Definition at line 149 of file vector_wrapper.h.
|
inlinevirtual |
Destructor.
Definition at line 152 of file vector_wrapper.h.