Ich frage mich, ob es einen Workaround in Gnuplot gibt, um etwas wie
plot input.dat using ($1/2):($2*2) axis x1y1 w lp
con
plot input.dat using func1($1,$2):func2($1,$2) axis x1y1 w lp
con
func1(x,y) = x/2; func2(x,y) = y*2;
?
Ich möchte meine Eingabedaten (Linie) vor dem Plotten nachbearbeiten.