Questions tagged [gnuplot-iostream]

It is an interface that allows gnuplot to be controlled from C++. Its similar to gnu plot.

Gnuplot-iostream is an interface that allows gnuplot to be controlled from C++. Its similar to gnu plot. it is a iostream pipe to gnuplot with some additional functions for pushing data arrays and getting mouse clicks. source code include STL containers (eg. vector), Blitz++, and armadillo. it is a low level interface, and usage involves manually sending commands to gnuplot using the "<<" operator

48 questions
-2
votes
1 answer

Graphic drawing

In the visual, 2 different graphics are given in a single frame (layout 1, 2). Both graphs are constrained by y 0: 7. Data concerning the graph of the column (phonon distribution) "" ZrSbTe.ph_THz "and xmax = 0.885990 The data concerning the 2nd…
-2
votes
2 answers

Gnuplot Linux CLI Gnerate low quality images in contrast to images generated by Gnuplot under Window Desktop?

I am using Gnuplot on Linux from the CLI : I found that the image quality is very low in contrast with the image quality generate by Gnuplot under windows, how I can set Gnuplot Linux to generate the identical image quality in Windows? G N U P L O…
-3
votes
1 answer

how to use variables in C++ in the gnuplot-iostream

I am using gnuplot-iostream for c++,my problem is like below: gp << "set object 1 rect from 3,1 to 3.2,4 fc lt 1 \n"; In the numbers of above, can we use some variables in c++ to replace them? and how to do that? Adding one rectangle is easy, but…
1 2 3
4