gnuplot tutorial
| To make a simple gnuplot all you
need to do is locate a binary or text file. Once you have the binary file
do the following. To plot and save a graph using gnuplot: >>gunplot >>plot 'filename' using 1:2 >>save 'plot1'To load a saved gnuplot: >>gnuplot >>load 'plot1'Here is a simple example: /gpfs/streeter> cd LCDM/CL0001/PROF/0050 PROF/0050> gnuplot gnuplot> plot 'cl0001_0050.a5.cent.prof_dm' using 1:2 gnuplot> save 'plotexample' Any other additional information about gnuplot can be found here. |