#include <model.h>
Public Member Functions | |
IMk1 () | |
Constructor. | |
void | set_parameters (double alp10, double alp20) |
set CONSTANT parameters | |
vec | eval (const vec &x0, const vec &u0) |
Evaluates . | |
void | dfdx_cond (const vec &x0, const vec &u0, mat &A, bool full=true) |
Evaluates and writes result into A . | |
void | dfdu_cond (const vec &x0, const vec &u0, mat &A, bool full=true) |
Evaluates and writes result into A . | |
vec | eval (const vec &cond) |
Evaluates (VS: Do we really need common eval? ). | |
int | _dimx () const |
access function | |
int | _dimu () const |
access function | |
virtual void | condition (const vec &val) |
function substitutes given value into an appropriate position | |
int | _dimy () const |
access function | |
Protected Attributes | |
double | alp1 |
double | alp2 |
RV | rvx |
Indentifier of the first rv. | |
RV | rvu |
Indentifier of the second rv. | |
int | dimx |
cache for rvx.count() | |
int | dimu |
cache for rvu.count() | |
int | dimy |
Length of the output vector. |
void IMk1::dfdx_cond | ( | const vec & | x0, | |
const vec & | u0, | |||
mat & | A, | |||
bool | full = true | |||
) | [inline, virtual] |
Evaluates and writes result into A
.
full | denotes that even unchanged entries are to be rewritten. When, false only the changed elements are computed. | |
x0 | numeric value of , | |
u0 | numeric value of | |
A | a place where the result will be stored. |
Reimplemented from bdm::diffbifn.
References bdm::RV::count().
void IMk1::dfdu_cond | ( | const vec & | x0, | |
const vec & | u0, | |||
mat & | A, | |||
bool | full = true | |||
) | [inline, virtual] |
Evaluates and writes result into A
.
full | denotes that even unchanged entries are to be rewritten. When, false only the changed elements are computed. | |
x0 | numeric value of , | |
u0 | numeric value of | |
A | a place where the result will be stored. |
Reimplemented from bdm::diffbifn.