|
| Series (const bool active=false) |
| Default construct. Not active by default. More...
|
|
| Series (const arma::vec &value) |
| Construct from arma::vec. Active by default. Allows implicit conversion from arma::vec to Series. More...
|
|
| Series (const arma::vec &value, const bool active) |
| Construct from arma::vec and bool active. More...
|
|
void | set (const arma::vec &value) |
| Set new value. Makes it an active boundary condition.
|
|
void | set (const arma::vec &value, const bool active) |
| Set new value and active status.
|
|
void | fill (const double value) |
| Armadillo-like fill. Fills member vector with value, and sets it active.
|
|
void | setActive (const bool active) |
| Set the active/inactive property.
|
|
Series & | operator= (const arma::vec &value) |
| Copy assignment operator from arma::vec. Sets it active. More...
|
|
double | operator() (const arma::uword i) const |
| Get element by index.
|
|
arma::uword | size () const |
| Get the size of the member arma::vec.
|
|
bool | isActive () const |
| If the Series is an active boundary condition.
|
|
bool | isActive () |
| If the Series is an active boundary condition.
|
|
const arma::vec & | vec () const |
| Get (const ref) member arma::vec m_vec.
|
|
Contains a single property, and information regarding whether it is an active boundary condition or not