 |
GNU Radio Manual and C++ API Reference
3.8.1.0
The Free & Open Software Radio Ecosystem
|
|
Go to the documentation of this file.
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();
feval_p()
Definition: feval.h:171
feval_dd()
Definition: feval.h:55
feval_ll()
Definition: feval.h:113
GR_RUNTIME_API long feval_ll_example(feval_ll *f, long x)
base class for evaluating a function: void -> void
Definition: feval.h:133
GR_RUNTIME_API double feval_dd_example(feval_dd *f, double x)
trivial examples / test cases showing C++ calling Python code
feval_cc()
Definition: feval.h:84
GR_RUNTIME_API gr_complex feval_cc_example(feval_cc *f, gr_complex x)
boost::shared_ptr< pmt_base > pmt_t
typedef for shared pointer (transparent reference counting). See http://www.boost....
Definition: pmt.h:96
base class for evaluating a function: pmt -> void
Definition: feval.h:162
base class for evaluating a function: long -> long
Definition: feval.h:104
#define GR_RUNTIME_API
Definition: gnuradio-runtime/include/gnuradio/api.h:30
std::complex< float > gr_complex
Definition: gr_complex.h:27
GR_RUNTIME_API void feval_example(feval *f)
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition: basic_block.h:43
base class for evaluating a function: complex -> complex
Definition: feval.h:75
feval()
Definition: feval.h:142
base class for evaluating a function: double -> double
Definition: feval.h:46