 |
GNU Radio Manual and C++ API Reference
3.9.1.0
The Free & Open Software Radio Ecosystem
|
|
Go to the documentation of this file.
11 #ifndef CONSTELLATION_DISPLAY_PLOT_H
12 #define CONSTELLATION_DISPLAY_PLOT_H
31 void plotNewData(
const std::vector<double*> realDataPoints,
32 const std::vector<double*> imagDataPoints,
33 const int64_t numDataPoints,
34 const double timeInterval);
38 const double* imagDataPoints,
39 const int64_t numDataPoints,
40 const double timeInterval);
46 void set_axis(
double xmin,
double xmax,
double ymin,
double ymax);
53 void _autoScale(
double bottom,
double top);
55 std::vector<double*> d_real_data;
56 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)
~ConstellationDisplayPlot() override
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:49
QWidget for displaying constellaton (I&Q) plots.
Definition: ConstellationDisplayPlot.h:23