Keywords for Datasets
Keyword | Parameters |
---|---|
DATASET |
inumb text |
FONT |
inumb |
CHARSIZE |
rnumb |
COLOR |
inumb |
GLOBALSIZE |
rnumb |
LFSIZE |
rnumb |
LINETYPE |
inumb |
BLOCK GOC=C3,DEFGOC; X=C1+273.15; Y=LOG10(C2); |
Select one X and one Y variable |
BLOCK GOC=C3,DWR; X1=C1+273.15; X2=C1; Y=C1+C2*4.184; |
or multiple X and one Y variable |
BLOCK GOC=C4,MWAS; X=C1+273.15; Y1=C2*4.184; Y2=C3; |
or one X and multiple Y variables |
BLOCK GOC=C5,DWA; X1=C1; X2=C4; Y1=C2*4.184; Y2=C3; |
or multiple XY pairs |
BLOCKEND |
|
DRAWLINE |
x,y x,y |
TEXT |
text or ~name (of a string, see below) |
ATTRIBUTE |
TOP, CENTER or BOTTOM |
STRING |
name text The text string may contain text formatting codes namely: ^S# to set font size, ^G for Greek font, ^F# to set font type, ^U# for positioning the text upwards, ^D# for positioning the text downwards, ^R#for positioning the text to the right, ^L# for positioning the text to the left, and finally ^N for printing without updating current position to the end of the character. These text formatting codes only work for soft fonts not hardcopy postscript fonts. |
INCLUDE |
filename |
CLIP |
ON or OFF |
SYMBOLSIZE |
rnumb |
FUNCTION Y=203(X); or X=203(Y); |
<start end steps GOC> The < > denotes an optional parameter. |
PAINT |
<code> <video> <mode> The <> denotes optional parameters. Paint the area enclosed by the current path in the current pattern. The current path starts at the last 'moveto' given and includes all subsequent 'draws'. Also see PCFUNCTION below. Default is <code>=0, <video>=NORMAL and <mode>=TRANSPARENT. To set a new current pattern supply any or all of the optional parameters. <code> is a single letter 0-9, A-Z or a-t (if <code>=t supply also a number in the range 0.00 - 1.00, e.g. PAINT t 0.25.) <video> is a string reading NORMAL or INVERSE. <mode> is a string reading TRANSPARENT or OPAQUE. |
PCFUNCTION Y=203(X); or X=203(Y); |
<start end steps GOC> The <> denotes an optional parameter. May be used to add a function to the current path. |