Hello, you can send data to gnuplot without using a temporary file, on unix-like OSes at least, by using popen to spawn gnuplot and write data and commands to it via a pipe, similar to what's mentioned at the bottom of this stack overflow answer:
https://stackoverflow.com/a/6934363/2977344https://stackoverflow.com/a/6934363/2977344
I've done this with some success from C code, and it's pretty tidy. Would you be interested in adding such functionality?
Hello, you can send data to
gnuplotwithout using a temporary file, on unix-like OSes at least, by usingpopento spawngnuplotand write data and commands to it via a pipe, similar to what's mentioned at the bottom of this stack overflow answer:https://stackoverflow.com/a/6934363/2977344https://stackoverflow.com/a/6934363/2977344
I've done this with some success from C code, and it's pretty tidy. Would you be interested in adding such functionality?