23 #ifndef INCLUDED_GR_FEVAL_H 24 #define INCLUDED_GR_FEVAL_H 52 virtual double eval(
double x);
58 virtual double calleval(
double x);
110 virtual long eval(
long x);
116 virtual long calleval(
long x);
145 virtual void calleval();
GR_RUNTIME_API double feval_dd_example(feval_dd *f, double x)
trivial examples / test cases showing C++ calling Python code
feval()
Definition: feval.h:142
feval_p()
Definition: feval.h:171
boost::shared_ptr< pmt_base > pmt_t
typedef for shared pointer (transparent reference counting). See http://www.boost.org/libs/smart_ptr/smart_ptr.htm
Definition: pmt.h:96
base class for evaluating a function: long -> longThis class is designed to be subclassed in Python o...
Definition: feval.h:104
GR_RUNTIME_API long feval_ll_example(feval_ll *f, long x)
#define GR_RUNTIME_API
Definition: gnuradio-runtime/include/gnuradio/api.h:30
std::complex< float > gr_complex
Definition: gr_complex.h:27
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition: basic_block.h:43
base class for evaluating a function: void -> voidThis class is designed to be subclassed in Python o...
Definition: feval.h:133
GR_RUNTIME_API gr_complex feval_cc_example(feval_cc *f, gr_complex x)
feval_ll()
Definition: feval.h:113
base class for evaluating a function: complex -> complexThis class is designed to be subclassed in Py...
Definition: feval.h:75
base class for evaluating a function: double -> doubleThis class is designed to be subclassed in Pyth...
Definition: feval.h:46
base class for evaluating a function: pmt -> voidThis class is designed to be subclassed in Python or...
Definition: feval.h:162
feval_cc()
Definition: feval.h:84
GR_RUNTIME_API void feval_example(feval *f)
feval_dd()
Definition: feval.h:55