 |
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 CONSTELLATION_DISPLAY_PLOT_H
24 #define CONSTELLATION_DISPLAY_PLOT_H
43 void plotNewData(
const std::vector<double*> realDataPoints,
44 const std::vector<double*> imagDataPoints,
45 const int64_t numDataPoints,
46 const double timeInterval);
50 const double* imagDataPoints,
51 const int64_t numDataPoints,
52 const double timeInterval);
58 void set_axis(
double xmin,
double xmax,
double ymin,
double ymax);
65 void _autoScale(
double bottom,
double top);
67 std::vector<double*> d_real_data;
68 std::vector<double*> d_imag_data;
ConstellationDisplayPlot(int nplots, QWidget *)
float min(float a, float b)
void setAutoScale(bool state)
void set_xaxis(double min, double max)
void set_yaxis(double min, double max)
void plotNewData(const std::vector< double * > realDataPoints, const std::vector< double * > imagDataPoints, const int64_t numDataPoints, const double timeInterval)
void set_axis(double xmin, double xmax, double ymin, double ymax)
void set_pen_size(int size)
QWidget base plot to build QTGUI plotting tools.
Definition: DisplayPlot.h:61
virtual ~ConstellationDisplayPlot()
QWidget for displaying constellaton (I&Q) plots.
Definition: ConstellationDisplayPlot.h:35