![]() |
GNSS-SDR
0.0.19
An Open Source GNSS Software Defined Receiver
|
Public Member Functions | |
| Gnuplot (const std::string &style="points") | |
| set a style during construction More... | |
| Gnuplot (const std::vector< double > &x, const std::string &title="", const std::string &style="points", const std::string &labelx="x", const std::string &labely="y") | |
| Gnuplot (const std::vector< double > &x, const std::vector< double > &y, const std::string &title="", const std::string &style="points", const std::string &labelx="x", const std::string &labely="y") | |
| Gnuplot (const std::vector< double > &x, const std::vector< double > &y, const std::vector< double > &z, const std::string &title="", const std::string &style="points", const std::string &labelx="x", const std::string &labely="y", const std::string &labelz="z") | |
| Gnuplot & | cmd (const std::string &cmdstr) |
| Gnuplot & | operator<< (const std::string &cmdstr) |
| Sends a command to an active gnuplot session, identical to cmd() More... | |
| Gnuplot & | showonscreen () |
| Gnuplot & | disablescreen () |
| Gnuplot & | savetops (const std::string &filename="gnuplot_output") |
| Gnuplot & | savetopdf (const std::string &filename="gnuplot_output", unsigned int font_size=12) |
| Gnuplot & | set_style (const std::string &stylestr="points") |
| Gnuplot & | set_smooth (const std::string &stylestr="csplines") |
| Gnuplot & | unset_smooth () |
| Gnuplot & | set_pointsize (const double pointsize=1.0) |
| Gnuplot & | set_grid () |
| Gnuplot & | unset_grid () |
| Gnuplot & | set_multiplot (int rows, int cols) |
| Gnuplot & | unset_multiplot () |
| Gnuplot & | set_samples (const int samples=100) |
| Gnuplot & | set_isosamples (const int isolines=10) |
| Gnuplot & | set_hidden3d () |
| Gnuplot & | unset_hidden3d () |
| Gnuplot & | set_contour (const std::string &position="base") |
| Gnuplot & | unset_contour () |
| Gnuplot & | set_surface () |
| Gnuplot & | unset_surface () |
| Gnuplot & | set_legend (const std::string &position="default") |
| Gnuplot & | unset_legend () |
| Gnuplot & | set_title (const std::string &title="") |
| Gnuplot & | unset_title () |
| Clears the title of a gnuplot session. More... | |
| Gnuplot & | set_ylabel (const std::string &label="x") |
| Gnuplot & | set_xlabel (const std::string &label="y") |
| Gnuplot & | set_zlabel (const std::string &label="z") |
| Gnuplot & | set_xrange (const double iFrom, const double iTo) |
| Gnuplot & | set_yrange (const double iFrom, const double iTo) |
| Gnuplot & | set_zrange (const double iFrom, const double iTo) |
| Gnuplot & | set_xautoscale () |
| Gnuplot & | set_yautoscale () |
| Gnuplot & | set_zautoscale () |
| Gnuplot & | set_xlogscale (const double base=10) |
| Gnuplot & | set_ylogscale (const double base=10) |
| Gnuplot & | set_zlogscale (const double base=10) |
| Gnuplot & | unset_xlogscale () |
| Gnuplot & | unset_ylogscale () |
| Gnuplot & | unset_zlogscale () |
| Gnuplot & | set_cbrange (const double iFrom, const double iTo) |
| Gnuplot & | plotfile_x (const std::string &filename, const unsigned int column=1, const std::string &title="") |
| template<typename X > | |
| Gnuplot & | plot_x (const X &x, const std::string &title="") |
| Gnuplot & | plotfile_xy (const std::string &filename, const unsigned int column_x=1, const unsigned int column_y=2, const std::string &title="", const unsigned int decimate=1) |
| template<typename X , typename Y > | |
| Gnuplot & | plot_xy (const X &x, const Y &y, const std::string &title="", const unsigned int decimate=1) |
| Gnuplot & | plotfile_xy_err (const std::string &filename, const unsigned int column_x=1, const unsigned int column_y=2, const unsigned int column_dy=3, const std::string &title="") |
| template<typename X , typename Y , typename E > | |
| Gnuplot & | plot_xy_err (const X &x, const Y &y, const E &dy, const std::string &title="") |
| template<typename X , typename Y , typename E > | |
| Gnuplot & | plot_grid3d (const X &x, const Y &y, const E &mag, const std::string &title="") |
| Gnuplot & | plotfile_xyz (const std::string &filename, const unsigned int column_x=1, const unsigned int column_y=2, const unsigned int column_z=3, const std::string &title="") |
| template<typename X , typename Y , typename Z > | |
| Gnuplot & | plot_xyz (const X &x, const Y &y, const Z &z, const std::string &title="") |
| Gnuplot & | plot_slope (const double a, const double b, const std::string &title="") |
| Gnuplot & | plot_equation (const std::string &equation, const std::string &title="") |
| Gnuplot & | plot_equation3d (const std::string &equation, const std::string &title="") |
| Gnuplot & | plot_image (const unsigned char *ucPicBuf, const unsigned int iWidth, const unsigned int iHeight, const std::string &title="") |
| Gnuplot & | plot_circle (double east, double north, double radius, const std::string &label="") |
| Gnuplot & | replot (void) |
| replot repeats the last plot or splot command. More... | |
| Gnuplot & | reset_plot () |
| Gnuplot & | reset_all () |
| void | remove_tmpfiles () |
| bool | is_valid () |
Static Public Member Functions | |
| static bool | set_GNUPlotPath (const std::string &path) |
| static void | set_terminal_std (const std::string &type) |
Definition at line 75 of file gnuplot_i.h.
|
inlineexplicit |
set a style during construction
Definition at line 695 of file gnuplot_i.h.
|
inline |
Sends a command to an active gnuplot session, identical to cmd()
Definition at line 225 of file gnuplot_i.h.
|
inline |
replot repeats the last plot or splot command.
Definition at line 639 of file gnuplot_i.h.
|
inline |
Clears the title of a gnuplot session.
Definition at line 434 of file gnuplot_i.h.
1.8.14