#include <vector_BOOST.h>
Public Member Functions | |
RowVector (int ncols) | |
RowVector (const MyRowVector &a) | |
RowVector (const BoostRowVector &a) | |
virtual void | resize (int num_cols) |
resize | |
virtual RowVector | vectorAdd (const MyRowVector &v2) const |
join two vectors | |
virtual unsigned int | rows () const |
Ask number of rows. | |
virtual unsigned int | columns () const |
Ask numbers of columns (=1). | |
virtual RowVector & | operator= (double a) |
Initialise all elements to a. | |
virtual RowVector & | operator= (const MyRowVector &a) |
operator = | |
virtual MyRowVector & | operator+= (const MyRowVector &a) |
Operators. | |
virtual MyRowVector & | operator-= (const MyRowVector &a) |
Operators. | |
virtual MyRowVector | operator+ (const MyRowVector &a) const |
Operators. | |
virtual MyRowVector | operator- (const MyRowVector &a) const |
Operators. | |
virtual MyRowVector & | operator+= (double b) |
Operators. | |
virtual MyRowVector & | operator-= (double b) |
Operators. | |
virtual MyRowVector & | operator*= (double b) |
Operators. | |
virtual MyRowVector & | operator/= (double b) |
Operators. | |
virtual MyRowVector | operator+ (double b) const |
Operators. | |
virtual MyRowVector | operator- (double b) const |
Operators. | |
virtual MyRowVector | operator* (double b) const |
Operators. | |
virtual MyRowVector | operator/ (double b) const |
Operators. | |
virtual const double | operator() (unsigned int) const |
element indexing | |
virtual const bool | operator== (const MyRowVector &a) const |
Operator ==. | |
virtual double & | operator() (unsigned int) |
element indexing | |
virtual MyRowVector | sub (int j_start, int j_end) const |
get sub matrix | |
virtual MyColumnVector | transpose () const |
get transpose | |
virtual double | operator* (const MyColumnVector &a) const |
Operators. |
Definition at line 95 of file vector_BOOST.h.