Jpp
18.0.1-rc.1
the software that should make you happy
|
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... | |
JFirst_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 533 of file JResult.hh.
typedef JLANG::JClass<JResult_t>::argument_type JTOOLS::JResultPolynome< N, JResult_t >::argument_type |
Definition at line 537 of file JResult.hh.
|
inline |
Default constructor.
Definition at line 545 of file JResult.hh.
|
inline |
Type conversion operator.
Definition at line 558 of file JResult.hh.
|
inline |
Type conversion operator.
Definition at line 570 of file JResult.hh.
|
inline |
Prefix unary minus for function value of PDF.
Definition at line 582 of file JResult.hh.
|
inline |
Addition operator for function value of PDF.
value | function value of PDF |
Definition at line 598 of file JResult.hh.
|
inline |
Subtraction operator for function value of PDF.
value | function value of PDF |
Definition at line 614 of file JResult.hh.
|
inline |
Multiplication operator for function value of PDF.
value | multiplication factor |
Definition at line 630 of file JResult.hh.
|
inline |
Division operator for function value of PDF.
value | multiplication factor |
Definition at line 646 of file JResult.hh.
|
inline |
Function value.
x | abscissa value |
Definition at line 662 of file JResult.hh.
|
inline |
Function value.
x | abscissa value |
Definition at line 681 of file JResult.hh.
|
inlineinherited |
|
static |
Definition at line 539 of file JResult.hh.
JResult_t JTOOLS::JResultPolynome< N, JResult_t >::y[NUMBER_OF_POINTS] |
function and derivative values
Definition at line 687 of file JResult.hh.