2018-05-07 01:33:42 +01:00
|
|
|
# gnuplot
|
|
|
|
|
|
|
|
> A graph plotter that outputs in several formats.
|
2025-08-16 10:06:19 +03:00
|
|
|
> More information: <https://manned.org/gnuplot>.
|
2018-05-07 01:33:42 +01:00
|
|
|
|
|
|
|
- Start the interactive graph plotting shell:
|
|
|
|
|
|
|
|
`gnuplot`
|
|
|
|
|
|
|
|
- Plot the graph for the specified graph definition file:
|
|
|
|
|
|
|
|
`gnuplot {{path/to/definition.plt}}`
|
|
|
|
|
|
|
|
- Set the output format by executing a command before loading the definition file:
|
|
|
|
|
|
|
|
`gnuplot -e "{{set output "path/to/filename.png" size 1024,768}}" {{path/to/definition.plt}}`
|
|
|
|
|
|
|
|
- Persist the graph plot preview window after gnuplot exits:
|
|
|
|
|
2025-03-26 02:30:50 +02:00
|
|
|
`gnuplot {{[-p|--persist]}} {{path/to/definition.plt}}`
|