splot での基本的な使用法:
splot 'a.dat' matrix splot 'a.gpbin' {matrix} binary
splot 'a.dat' matrix using 1:2:3 splot 'a.gpbin' {matrix} binary using 1:2:3
plot での使用法:
plot `a.dat` matrix plot `a.dat` matrix using 1:3 plot 'a.gpbin' {matrix} binary using 1:3
例 - ASCII データファイルの配列の軸の拡大:
splot `a.dat` matrix using (1+$1):(1+$2*10):3
例 - ASCII データファイルの配列の第 3 行の描画:
plot 'a.dat' matrix using 1:3 every 1:999:1:2