Tagged Questions
1
vote
0answers
34 views
Gnuplot generated by C program can't be rotated
I'm trying to create an interface with C that generates a surface plot that can be rotated. I've got C to generate the plot but it can't be rotated, any ideas? It seems like my program still has some ...
1
vote
1answer
58 views
(Mac OSX) Adding libraries to C -specifically gnuplot
I am a begineer trying to get code in C. I am working on a Mac and using xcode. My only past experience has been with java using eclipse and everything was pretty straight forward. I have almost no ...
0
votes
1answer
68 views
Plotting a segmented line with segments coloured based on a variable
I'm trying to draw a plot (in R or gnuplot) where the x axis represent a single sample and the y axis is segmented to represented different portions of time. Each line segment (or box) would be ...
0
votes
0answers
37 views
Producing a travelling wave in gnuplot
I am solving a PDE numerically and have the solution at different points in time.
I need to do a presentation on this and would like to show how it evolves in time. Is it possible to do this in ...
7
votes
4answers
903 views
How to plot data by c program?
I am a mechanical engineer who has only limited knowledge in C programming. I wrote some code in order to make simulations, and I want to visualize the simulation results. At the moment I am using ...
1
vote
3answers
173 views
Opening GnuPlot by my program in C
I want my program to automatically open GNUplot and plot the graph from the given file. Unfortunetaly it does not work properlly:
system("gnuplot> plot '/home/user/Desktop/program/data.txt'");
...
0
votes
2answers
122 views
How to export the data to .txt readable by GNUplot
Yesterday I was too tired to post correct and specific question. So there it is:
if (t==2){
printf ("abc\n");
printf ("abc = "); scanf ("%f",&r);
printf ("abc = "); scanf ...
-1
votes
1answer
460 views
C++: how to output data to multiple .dat files?
I have a research project I'm working on. I am a beginner in C++ and programming in general. I have already made a program that generates interacting particles that move on continuous space as time ...
1
vote
2answers
463 views
sh: gnuplot: command not found in Xcode
Trying to open a pipe to Gnuplot in a simple C program, with
FILE *pipe=popen("gnuplot - persist", "w");
receiving the above error. I have installed Gnuplot using Macports and the gnuplot command ...
0
votes
1answer
182 views
Piping set terminal to gnuplot pipe produced garbage on screen
I have a pipe to gnuplot which I use to graph a file. The file gets graphed fine and is produced on the screen, however when I try to pipe set terminal jpeg and set output file.jpeg I get garbage on ...
0
votes
0answers
72 views
data sets plots with start and end values
I am trying to come up with a strategy to programatically plot data sets that have individual elements with start and end values. To give an example, a data set for a disk utilization would show a ...
2
votes
2answers
522 views
fprintf not writing to the pipe
I am successfully opening the pipe i.e gnuplot window using _popen. But not able to write to the stream using fprintf. I have checked the file pointer value and it is not null. I searched many sources ...
1
vote
1answer
310 views
Error - Compiling Gnuplot on Windows 7 using nmake and makefile.nt
Gnuplot experts or anyone who is willing to help me - I have explained what I have done in very simple words and in a detailed manner. Thanks for your time and patience in advance.
My aim is to ...
0
votes
1answer
105 views
Which would be faster
I have a pipe to gnuplot in c that I am passing 100,000 points as inline data. I need to plot multiple lines from this data set. The problem is that Gnuplot forgets about the inline data once it plots ...
0
votes
2answers
308 views
Reusing inline data in gnuplot
Does anyone know how I can reuse inline data in Gnuplot, i've been googling it and can't find nothing everything suggests to input the data gain? Basically reuse the '-' file.
0
votes
1answer
318 views
Piping to gnuplot, doesn't accept multiple commands
I have the following code:
fprintf(temp->_fstream, "plot '-' using 1:2 title 'tittle1'\n");
_fstream is a gnuplot pipe, using the '-' enables to write the data to gnuplot directly instead of ...
5
votes
1answer
2k views
Passing data array to gnuplot via a pipe in c rather than a file
Right now I am passing a file to gnuplot via a a pipe in c, something like this:
fprintf(gnuplotPipe, "plot \"data-file.dat\" using 1:2\n");
Is there any way that I don't have to write the data ...
2
votes
1answer
321 views
gnuplot and usleep on C
i'm trying to do a realtime plot on Linux. Everything runs ok, it's just that when the program ends, there's a lot of CPU usage for a while. Besides, because i use a very short time on usleep (like ...
3
votes
2answers
3k views
save a plot as a png in gnuplot and C
I have been able to use gnuplot to plot graphs as I run my program, but now I want to write the graphs to files. The following code opens a plot and creates a png, but the png does not open (Gimp says ...
1
vote
2answers
450 views
How to link a non-standard header file into a C compiler
I'm trying to use a non-standard header file (http://ndevilla.free.fr/gnuplot). Its used in lots of codes in various different places on my computer. Currently I have to put the header file and the ...
2
votes
2answers
7k views
Making C code plot a graph automatically
I have written a program which writes a list of data to a '.dat' file with the intention of then plotting it separately using gnuplot. Is there a way of making my code plot it automatically? My ...
0
votes
2answers
230 views
Writing a list of data values to a .dat file to plot in GNUplot (in C)
Hiya, I have written two different methods to numerically differentiate a function and I am looking for a way to compare them. I have installed GNUPlot and would like to make a file (e.g. ...
7
votes
3answers
2k views
Visualization from C/C++ via Gnuplot's pipe interface
I am attempting to use the pipe interface to gnuplot (a standard one gnuplot_i.{cpp,hpp}) in order to generate a real time display of values that are continually changing within another program ...
11
votes
6answers
8k views
Good plotting library for C? [closed]
My question is very similar in spirit to this question: What is the best plotting library for Python?
What is my best bet for plotting data in C? Am I better off forgoing a library and just ...

