Jpp
|
Data structure for result including value and N
derivatives of function.
More...
#include <JResult.hh>
Public Types | |
typedef JLANG::JClass< JResult_t >::argument_type | argument_type |
Public Member Functions | |
JResultPolynome () | |
Default constructor. More... | |
operator JResultDerivative< JResult_t > () const | |
Type conversion operator. More... | |
operator JResultHesse< JResult_t > () const | |
Type conversion operator. More... | |
JResultPolynome & | negate () |
Prefix unary minus for function value of PDF. More... | |
JResultPolynome & | add (const JResultPolynome &value) |
Addition operator for function value of PDF. More... | |
JResultPolynome & | sub (const JResultPolynome &value) |
Subtraction operator for function value of PDF. More... | |
JResultPolynome & | mul (const double value) |
Multiplication operator for function value of PDF. More... | |
JResultPolynome & | div (const double value) |
Division operator for function value of PDF. More... | |
double | getValue (const double x) const |
Function value. More... | |
double | operator() (const double x) const |
Function value. More... | |
JResultPolynome< N, JResult_t > & | mul (const JSecond_t &object) |
Multiply with object. More... | |
Public Attributes | |
JResult_t | y [NUMBER_OF_POINTS] |
function and derivative values More... | |
Static Public Attributes | |
static const int | NUMBER_OF_POINTS = N + 1 |
Data structure for result including value and N
derivatives of function.
This data structure contains the following data mambers:
JResultPolynome::y[0] = function value; JResultPolynome::y[i] = ith derivative; JResultPolynome::y[N] = Nth derivative;
This class implements the JMATH::JMath interface.
Definition at line 531 of file JResult.hh.
typedef JLANG::JClass<JResult_t>::argument_type JTOOLS::JResultPolynome< N, JResult_t >::argument_type |
Definition at line 535 of file JResult.hh.
|
inline |
Default constructor.
Definition at line 543 of file JResult.hh.
|
inline |
|
inline |
|
inline |
Prefix unary minus for function value of PDF.
Definition at line 580 of file JResult.hh.
|
inline |
Addition operator for function value of PDF.
value | function value of PDF |
Definition at line 596 of file JResult.hh.
|
inline |
Subtraction operator for function value of PDF.
value | function value of PDF |
Definition at line 612 of file JResult.hh.
|
inline |
Multiplication operator for function value of PDF.
value | multiplication factor |
Definition at line 628 of file JResult.hh.
|
inline |
Division operator for function value of PDF.
value | multiplication factor |
Definition at line 644 of file JResult.hh.
|
inline |
Function value.
x | abscissa value |
Definition at line 660 of file JResult.hh.
|
inline |
Function value.
x | abscissa value |
Definition at line 679 of file JResult.hh.
|
inlineinherited |
Multiply with object.
object | object |
Definition at line 273 of file JMath.hh.
|
static |
Definition at line 537 of file JResult.hh.
JResult_t JTOOLS::JResultPolynome< N, JResult_t >::y[NUMBER_OF_POINTS] |
function and derivative values
Definition at line 685 of file JResult.hh.