)), and the columns are separated by single spaces.
This can be useful if you want to generate contours and then save them for
further use. The same method can be used to save interpolated data
(see set samples (p.
) and set dgrid3d (p.
)).
Syntax:
set table {"outfile" | $datablock} {append}
plot <whatever>
unset table
Subsequent tabular output is written to "outfile", if specified, otherwise it
is written to stdout or other current value of set output. If outfile
exists it will be replaced unless the append keyword is given.
Alternatively, tabular output can be redirected to a named data block.
Data block names start with '$', see also inline data (p.
). You must explicitly
unset table in order to go back to normal plotting on the current terminal.
To avoid any style-dependent processing of the input data (smoothing, errorbar expansion, secondary range checking, etc), or to increase the number of columns that can be tabulated, you can use the keyword "table" instead of a normal plot style. For example
set table
plot <file> using 1:2:3:4:($5+$6):(func($7)):8:9:10 with table