Markus Feldmann wrote:
> I have got a data file with some values.
> Therfor i wanna subtract some pairs of values and then plot them.
*Which* pairs to you want to subtract from each other?
> As I know you can select values in a data file by the "using" command,
> but I think there is no possibility to calculate this values before i
> plot this?
If what you're trying to do isn't something like
plot 'data' using 1:($2-$3)
then gnuplot can't do it (--> 'help using'). In that case, you have to
do the work outside, in a data preconditioning program, which you can
then use from inside gnuplot like this
plot "< program data"
See 'help datafile special'
|