description:
sddscontour makes contour and color-map plots from a SDDS data set column, or from a rpn expression
in terms of the values in the columns of a data set. It supports FFT interpolation and filtering. If the
data set contains more than one data table, data from successive tables is plotted on separate pages.
The file must contain tabular data with at least one numeric column, which will be organized into a 2d array with
R rows and C columns. By default, the values are assumed to come in row-major order (i.e., the file should
contain a series of R sequences each containing the C values of a single row). The parameters of the 2d grid
over which the plot is to be made are communicated to the program in one of two ways:
- The fixed-value string parameters Variable1Name and Variable2Name contain the names of the
x and y axis variables, which I'll represent as x and y respectively. The program expects to find
six more parameters, with names xMinimum, xInterval, and xDimension, and
similarly for y. These parameters must be numeric, and contain the minimum value, the interval between
grid points, and the number of points, respectively, for the dimension in question.
- The numeric parameters NumberOfRows and NumberOfColumns contain the values of R and
C, respectively.