23#ifndef INCLUDED_GR_FEVAL_H
24#define INCLUDED_GR_FEVAL_H
52 virtual double eval(
double x);
base class for evaluating a function: complex -> complex
Definition: feval.h:76
feval_cc()
Definition: feval.h:84
virtual gr_complex eval(gr_complex x)
override this to define the function
virtual gr_complex calleval(gr_complex x)
base class for evaluating a function: double -> double
Definition: feval.h:47
virtual double eval(double x)
override this to define the function
virtual double calleval(double x)
feval_dd()
Definition: feval.h:55
base class for evaluating a function: long -> long
Definition: feval.h:105
virtual long calleval(long x)
feval_ll()
Definition: feval.h:113
virtual long eval(long x)
override this to define the function
base class for evaluating a function: pmt -> void
Definition: feval.h:163
virtual void calleval(pmt::pmt_t x)
virtual void eval(pmt::pmt_t x)
override this to define the function
feval_p()
Definition: feval.h:171
base class for evaluating a function: void -> void
Definition: feval.h:134
virtual void eval()
override this to define the function
feval()
Definition: feval.h:142
#define GR_RUNTIME_API
Definition: gnuradio-runtime/include/gnuradio/api.h:30
std::complex< float > gr_complex
Definition: gr_complex.h:27
Include this header to use the message passing features.
Definition: basic_block.h:45
GR_RUNTIME_API void feval_example(feval *f)
GR_RUNTIME_API long feval_ll_example(feval_ll *f, long x)
GR_RUNTIME_API gr_complex feval_cc_example(feval_cc *f, gr_complex x)
GR_RUNTIME_API double feval_dd_example(feval_dd *f, double x)
trivial examples / test cases showing C++ calling Python code
boost::intrusive_ptr< pmt_base > pmt_t
typedef for shared pointer (transparent reference counting). See http://www.boost....
Definition: pmt.h:56