This class is a data structure for storing of a parametric curve together with its partial derivatives with respect to initial point up to desired order.
More...
|
| BasicCnCurve (size_type dimension, size_type order, size_type degree) |
|
| BasicCnCurve (const BasicCnCurve &c) |
|
virtual | ~BasicCnCurve () |
|
BasicCnCurve & | operator= (const BasicCnCurve &c) |
|
virtual void | setOrder (size_type order) |
| Sets the order of Taylor interpolation. More...
|
|
size_type | getOrder () const |
| Returns the order of Taylor interpolation. More...
|
|
size_type | getAllocatedOrder () const |
| Returns maximal allocated order - used to avoid memory reallocation. More...
|
|
size_type | dimension () const |
| Returns the dimension in which the parametric curve is embedded. More...
|
|
size_type | degree () const |
| Returns maximal degree of the jet. More...
|
|
void | setDegree (size_type degree) |
| Sets new maximal degree of the jet and reallocates memory. More...
|
|
void | clearCoefficients () |
| sets all coefficients to zero More...
|
|
const ScalarType & | centerCoefficient (size_type i, size_type k) const |
|
const ScalarType & | coefficient (size_type i, size_type k) const |
|
const ScalarType & | coefficient (size_type i, size_type j, size_type k) const |
|
const ScalarType & | coefficient (size_type i, size_type j, size_type c, size_type k) const |
|
const ScalarType & | coefficient (size_type i, size_type j, size_type c, size_type s, size_type k) const |
|
const ScalarType & | remainderCoefficient (size_type i, size_type j) const |
|
const ScalarType & | remainderCoefficient (size_type i, size_type j, size_type k) const |
|
const ScalarType & | remainderCoefficient (size_type i, size_type j, size_type c, size_type k) const |
|
const ScalarType & | remainderCoefficient (size_type i, size_type j, size_type c, size_type s, size_type k) const |
|
ScalarType & | centerCoefficient (size_type i, size_type k) |
|
ScalarType & | coefficient (size_type i, size_type k) |
|
ScalarType & | coefficient (size_type i, size_type j, size_type k) |
|
ScalarType & | coefficient (size_type i, size_type j, size_type c, size_type k) |
|
ScalarType & | coefficient (size_type i, size_type j, size_type c, size_type s, size_type k) |
|
ScalarType & | remainderCoefficient (size_type i, size_type j) |
|
ScalarType & | remainderCoefficient (size_type i, size_type j, size_type k) |
|
ScalarType & | remainderCoefficient (size_type i, size_type j, size_type c, size_type k) |
|
ScalarType & | remainderCoefficient (size_type i, size_type j, size_type c, size_type s, size_type k) |
|
void | allocate (size_type dimension, size_type degree) |
|
void | deallocate () |
|
void | copyData (const BasicCnCurve &c) |
|
const VectorType * | getCoefficientsAtCenter () const |
|
const JetType * | getCoefficients () const |
|
const JetType * | getRemainderCoefficients () const |
|
VectorType * | getCoefficientsAtCenter () |
|
JetType * | getCoefficients () |
|
JetType * | getRemainderCoefficients () |
|
void | setInitMatrix (const MatrixType &) |
|
void | setInitHessian (const HessianType &) |
|
void | setInitJet (const JetType &) |
|
std::runtime_error | domainErrorMessage (std::string msg, ScalarType h, Real left, Real right) const |
|
template<class MatrixT>
class capd::diffAlgebra::BasicCnCurve< MatrixT >
This class is a data structure for storing of a parametric curve together with its partial derivatives with respect to initial point up to desired order.
More precisely, a curve c(t,x) is represented as c(t,x_0) + d/dx c(t,x)(x-x_0) + smallRemainder(t,x).
Derivatives are represented as d^i c(t,x) + smallRemainder(t,x).
This class provides a member functions for accessing of all coefficients.