|
Jpp
|
Type definition of a spline interpolation based on a JMap implementation. More...
#include <JFunctionalMap_t.hh>
Public Member Functions | |
| virtual result_type | evaluate (const argument_type *pX) const |
| Recursive interpolation method implementation. More... | |
| JMap & | add (const JMap &map) |
| Add map. More... | |
| JCollection & | add (const JCollection &collection) |
| Add collection. More... | |
| JCollection & | add (typename JClass< ordinate_type >::argument_type value) |
| Add offset. More... | |
| JCollection & | add (const JFunction1D_t &function) |
| Add function. More... | |
| JMap & | sub (const JMap &map) |
| Subtract map. More... | |
| JCollection & | sub (const JCollection &collection) |
| Subtract collection. More... | |
| JCollection & | sub (typename JClass< ordinate_type >::argument_type value) |
| Subtract offset. More... | |
| JCollection & | sub (const JFunction1D_t &function) |
| Subtract function. More... | |
| JMap & | mul (const double value) |
| Scale contents. More... | |
| JFirst_t & | mul (const JSecond_t &object) |
| Multiply with object. More... | |
| JMap< JKey_t, JValue_t, JDistance_t > & | mul (const JNullType &object) |
| Multiply with object. More... | |
| JMap & | div (const double value) |
| Scale contents. More... | |
| virtual void | clear () |
| Clear. More... | |
| virtual const ordinate_type & | get (typename JClass< abscissa_type >::argument_type x) const |
| Get ordinate value. More... | |
| virtual ordinate_type & | get (typename JClass< abscissa_type >::argument_type x) |
| Get ordinate value. More... | |
| virtual const mapped_type & | get (typename JClass< key_type >::argument_type key) const =0 |
| Get mapped value. More... | |
| virtual mapped_type & | get (typename JClass< key_type >::argument_type key)=0 |
| Get mapped value. More... | |
| virtual int | getSize () const |
| Get number of elements. More... | |
| virtual abscissa_type | getX (int index) const |
| Get abscissa value. More... | |
| virtual abscissa_type | getXmin () const |
| Get minimal abscissa value. More... | |
| virtual abscissa_type | getXmax () const |
| Get maximal abscissa value. More... | |
| const ordinate_type & | getY (int index) const |
| Get ordinate value. More... | |
| ordinate_type & | getY (int index) |
| Get ordinate value. More... | |
| void | transform (const transformer_type &transformer) |
| Transform collection. More... | |
| void | sort () |
| Sort elements. More... | |
| const_iterator | lower_bound (typename JClass< abscissa_type >::argument_type x) const |
Get first position of element i, where x >= i->getX(). More... | |
| iterator | lower_bound (typename JClass< abscissa_type >::argument_type x) |
Get first position of element i, where x >= i->getX(). More... | |
| pair_type | insert (const value_type &element) |
| Insert element. More... | |
| void | configure (const JAbstractCollection< abscissa_type > &bounds) |
| Configure collection. More... | |
| void | configure (const JAbstractCollection< abscissa_type > &bounds, typename JClass< ordinate_type >::argument_type value) |
| Configure collection. More... | |
| void | configure (const JAbstractCollection< abscissa_type > &bounds, const JFunction1D_t &function) |
| Configure collection. More... | |
| bool | is_compatible (const JCollection &collection) const |
| Test whether collections are compatible. More... | |
| JCollection & | negate () |
| Negate collection. More... | |
| const JComparator & | getComparator () const |
| Get comparator. More... | |
| const mapped_type & | operator[] (typename JClass< key_type >::argument_type key) const |
| Get mapped value. More... | |
| mapped_type & | operator[] (typename JClass< key_type >::argument_type key) |
| Get mapped value. More... | |
| void | put (typename JClass< key_type >::argument_type key, typename JClass< mapped_type >::argument_type value) |
| Put pair-wise element (key,value) into collection. More... | |
| bool | is_equal (const JAbstractCollection &collection) const |
| Test whether abstract collections are equal. More... | |
| JSupervisor | getSupervisor () const |
| Get supervisor. More... | |
| const JExceptionHandler & | getExceptionHandler () const |
| Get exception handler. More... | |
| void | setExceptionHandler (const JSupervisor &supervisor) |
| Set the supervisor for handling of exceptions. More... | |
Static Public Member Functions | |
| static result_type | getValue (const JFunctional &function, const argument_type *pX) |
| Recursive function value evaluation. More... | |
| static JClass< result_type > ::argument_type | getValue (typename JClass< result_type >::argument_type value, const argument_type *pX) |
| Termination of recursive function value evaluation. More... | |
Public Attributes | |
| JDistance_t | getDistance |
| Function object for distance evaluation. More... | |
Protected Member Functions | |
| void | resize (typename container_type::size_type size) |
| Resize collection. More... | |
Protected Attributes | |
| JComparator | compare |
| Function object for comparison. More... | |
| JSupervisor | supervisor |
Type definition of a spline interpolation based on a JMap implementation.
Definition at line 118 of file JFunctionalMap_t.hh.
|
inherited |
Definition at line 704 of file JSpline.hh.
|
inherited |
Definition at line 705 of file JSpline.hh.
|
inherited |
Definition at line 707 of file JSpline.hh.
|
inherited |
Definition at line 708 of file JSpline.hh.
|
inherited |
Definition at line 709 of file JSpline.hh.
|
inherited |
Definition at line 710 of file JSpline.hh.
|
inherited |
Definition at line 712 of file JSpline.hh.
|
inherited |
Definition at line 713 of file JSpline.hh.
|
inherited |
Definition at line 714 of file JSpline.hh.
|
inherited |
Definition at line 715 of file JSpline.hh.
|
inherited |
Definition at line 717 of file JSpline.hh.
|
inherited |
Definition at line 718 of file JSpline.hh.
|
inherited |
Definition at line 719 of file JSpline.hh.
|
inherited |
Definition at line 721 of file JSpline.hh.
|
inherited |
Definition at line 724 of file JSpline.hh.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
Definition at line 95 of file JCollection.hh.
|
inherited |
Definition at line 96 of file JCollection.hh.
|
inherited |
Definition at line 306 of file JFunctional.hh.
|
inherited |
Definition at line 89 of file JFunctional.hh.
|
inlinevirtualinherited |
Recursive interpolation method implementation.
| pX | pointer to abscissa values |
Implements JTOOLS::JFunctional< JKey_t, JResultDerivative< JResultType< JValue_t >::result_type > >.
Definition at line 740 of file JSpline.hh.
|
inlineinherited |
Add map.
| map | map |
Definition at line 57 of file JMap.hh.
|
inlineinherited |
Add collection.
| collection | collection |
Definition at line 453 of file JCollection.hh.
|
inlineinherited |
Add offset.
| value | offset |
Definition at line 601 of file JCollection.hh.
|
inlineinherited |
Add function.
| function | function |
Definition at line 634 of file JCollection.hh.
|
inlineinherited |
Subtract map.
| map | map |
Definition at line 71 of file JMap.hh.
|
inlineinherited |
Subtract collection.
| collection | collection |
Definition at line 509 of file JCollection.hh.
|
inlineinherited |
Subtract offset.
| value | offset |
Definition at line 617 of file JCollection.hh.
|
inlineinherited |
Subtract function.
| function | function |
Definition at line 651 of file JCollection.hh.
|
inlineinherited |
Scale contents.
| value | multiplication factor |
Definition at line 85 of file JMap.hh.
|
inlineinherited |
Multiply with object.
| object | object |
Definition at line 273 of file JMath.hh.
|
inlineinherited |
Multiply with object.
| object | object |
Definition at line 273 of file JMath.hh.
|
inlineinherited |
Scale contents.
| value | division factor |
Definition at line 98 of file JMap.hh.
|
inlinevirtualinherited |
Clear.
Implements JTOOLS::JMappableCollection< JKey_t, JValue_t >.
Definition at line 149 of file JCollection.hh.
|
inlinevirtualinherited |
Get ordinate value.
| x | abscissa value |
Definition at line 161 of file JCollection.hh.
|
inlinevirtualinherited |
Get ordinate value.
| x | abscissa value |
Definition at line 179 of file JCollection.hh.
|
pure virtualinherited |
Get mapped value.
| key | key |
Implemented in JTOOLS::JCollection< JElement_t, JDistance_t >, JTOOLS::JHashMap< JKey_t, JValue_t, JEvaluator_t >, JTOOLS::JHashMap< JHead_t, JValue_t, JEvaluator_t >, JTOOLS::JHashMap< int, JModuleSignalProcessor >, JTOOLS::JHashMap< JEKey, JEmitter >, JTOOLS::JHashMap< int, JString >, JTOOLS::JHashMap< JHead_t, JHashMap< JTail_t, JValue_t, JEvaluator_t >, JEvaluator_t >, JTOOLS::JHashMap< JACOUSTICS::JEKey, JACOUSTICS::JModel::JEmitter >, JTOOLS::JHashMap< int, JFloor >, and JTOOLS::JGarbageCollection< JKey_t, JValue_t >.
|
pure virtualinherited |
Get mapped value.
| key | key |
Implemented in JTOOLS::JCollection< JElement_t, JDistance_t >, JTOOLS::JHashMap< JKey_t, JValue_t, JEvaluator_t >, JTOOLS::JHashMap< JHead_t, JValue_t, JEvaluator_t >, JTOOLS::JHashMap< int, JModuleSignalProcessor >, JTOOLS::JHashMap< JEKey, JEmitter >, JTOOLS::JHashMap< int, JString >, JTOOLS::JHashMap< JHead_t, JHashMap< JTail_t, JValue_t, JEvaluator_t >, JEvaluator_t >, JTOOLS::JHashMap< JACOUSTICS::JEKey, JACOUSTICS::JModel::JEmitter >, JTOOLS::JHashMap< int, JFloor >, and JTOOLS::JGarbageCollection< JKey_t, JValue_t >.
|
inlinevirtualinherited |
Get number of elements.
Implements JTOOLS::JAbstractCollection< JAbscissa_t >.
Definition at line 196 of file JCollection.hh.
|
inlinevirtualinherited |
Get abscissa value.
| index | index |
Implements JTOOLS::JAbstractCollection< JAbscissa_t >.
Definition at line 208 of file JCollection.hh.
|
inlinevirtualinherited |
Get minimal abscissa value.
Implements JTOOLS::JAbstractCollection< JAbscissa_t >.
Definition at line 219 of file JCollection.hh.
|
inlinevirtualinherited |
Get maximal abscissa value.
Implements JTOOLS::JAbstractCollection< JAbscissa_t >.
Definition at line 230 of file JCollection.hh.
|
inlineinherited |
Get ordinate value.
| index | index |
Definition at line 243 of file JCollection.hh.
|
inlineinherited |
Get ordinate value.
| index | index |
Definition at line 255 of file JCollection.hh.
|
inlineinherited |
Transform collection.
| transformer | element transformer |
Definition at line 266 of file JCollection.hh.
|
inlineinherited |
Sort elements.
Definition at line 281 of file JCollection.hh.
|
inlineinherited |
Get first position of element i, where x >= i->getX().
| x | abscissa value |
Definition at line 293 of file JCollection.hh.
|
inlineinherited |
Get first position of element i, where x >= i->getX().
| x | abscissa value |
Definition at line 305 of file JCollection.hh.
|
inlineinherited |
Insert element.
| element | element |
Definition at line 317 of file JCollection.hh.
|
inlineinherited |
Configure collection.
| bounds | abscissa values |
Definition at line 333 of file JCollection.hh.
|
inlineinherited |
Configure collection.
| bounds | abscissa values |
| value | ordinate value |
Definition at line 345 of file JCollection.hh.
|
inlineinherited |
Configure collection.
| bounds | abscissa values |
| function | function |
Definition at line 366 of file JCollection.hh.
|
inlineinherited |
Test whether collections are compatible.
| collection | collection |
Definition at line 395 of file JCollection.hh.
|
inlineinherited |
Negate collection.
Definition at line 437 of file JCollection.hh.
|
inlineinherited |
Get comparator.
Definition at line 764 of file JCollection.hh.
|
inlineprotectedinherited |
|
inlineinherited |
Get mapped value.
| key | key |
Definition at line 73 of file JMappableCollection.hh.
|
inlineinherited |
Get mapped value.
| key | key |
Definition at line 85 of file JMappableCollection.hh.
|
inlineinherited |
Put pair-wise element (key,value) into collection.
| key | key |
| value | value |
Definition at line 97 of file JMappableCollection.hh.
|
inlineinherited |
Test whether abstract collections are equal.
| collection | abstract collection |
Definition at line 69 of file JAbstractCollection.hh.
|
inlinestaticinherited |
Recursive function value evaluation.
| function | function |
| pX | pointer to abscissa values |
Definition at line 107 of file JFunctional.hh.
|
inlinestaticinherited |
Termination of recursive function value evaluation.
| value | result |
| pX | pointer to abscissa values |
Definition at line 121 of file JFunctional.hh.
|
inlineinherited |
Get supervisor.
Definition at line 266 of file JFunctional.hh.
|
inlineinherited |
Get exception handler.
Definition at line 277 of file JFunctional.hh.
|
inlineinherited |
Set the supervisor for handling of exceptions.
| supervisor | supervisor |
Definition at line 288 of file JFunctional.hh.
|
inherited |
Function object for distance evaluation.
Definition at line 773 of file JCollection.hh.
|
protectedinherited |
Function object for comparison.
Definition at line 780 of file JCollection.hh.
|
protectedinherited |
Definition at line 295 of file JFunctional.hh.
1.8.5