esempio con using e varie colonne
scrivere file per dati con tre
colonne (pdata1.dat)
richiamare con Plot "pdata1.dat" seguito da using n1:n2
o altre colonne :using n1:n3
# file da usare con plot pdata1.dat # esempi formato particolare per visualizzazione colonne
1 6 11 2 7 12 3 8 13 4 9 14 5 10 15
plot "pdata1.dat" (come standard legge 1,2 colonna)
plot "pdata1.dat" using 1:2 (simile al precedente)
plot "pdata1.dat" using 1:3
plot "pdata1.dat" using 1:($2+$3) (somma 2+3 colonna)
splot "pdata1.dat" (standard 1:2:3 colonne)
splot "pdata1.dat" using 1:2:($2+$3) (usa 1:2: 2+3 colonne)