What is the difference between gnuplot and AquaTerm?

What is the difference between AquaTerm and gnuplot.

Is it also true that Octave uses AquaTerm instead of X11?

I know that AquaTerm may be a better rendering of actual graphics, and gnuplot is probably an engine, but what does that mean?

+4
source share
1 answer

AquaTerm is a graphic renderer. In principle, this is a library with an API that allows various programming languages โ€‹โ€‹to display graphics on the screen. gnuplot is a charting utility. In many ways, gnuplot functions as a special programming language used to create graphs. He is able to record these graphs on a whole bunch of different devices ("terminals"). examples of some devices are files (png, pdf, postscript), printers and graphic libraries (X11, AquaTerm). Ultimately, any graph that you can make with gnuplot + AquaTerm to display on the backend can be done without gnuplot. Gnuplot's goal is to abstract away the details of the output device from the user as much as possible, so that if you create a plot and display it using AquaTerm, you can easily save this chart in a png file for future use. In reality, there is always terminal-dependent behavior, but in most cases it does not matter.

+4
source

Source: https://habr.com/ru/post/1481074/


All Articles