0byt3m1n1
Path:
C:
/
Users
/
Administrator
/
SYSTAT
/
SYSTAT_13
/
Gallery
/
[
Home
]
File: Kernel and Normal Contours.syc
REM This item was created using ADMIT with GREQ as the X-variable, GREV, as the Y-variable, number of solid contour lines set to 8, and, number of dotted contour lines set to 4. TOKEN TOKEN &message / TYPE = MESSAGE PROMPT = 'This item creates kernel and, normal density contours with as many solid and dotted, contour lines as you specify.' TOKEN &var1 / TYPE = VARIABLE PROMPT = 'Select an X-variable.' IMMEDIATE TOKEN &var2 / TYPE = VARIABLE PROMPT = 'Select a Y-variable.' IMMEDIATE TOKEN &tick / TYPE = INTEGER PROMPT = 'Enter the number of solid contour, lines to display.' IMMEDIATE TOKEN &pip / TYPE = INTEGER PROMPT = 'Enter the number of dotted contour, lines to display.' IMMEDIATE BEGIN DENSITY . * &var2 * &var1 / KERNEL CONTOUR ZTICK = &tick ZPIP = &pip, LOC = {-3IN, 0IN} DENSITY . * &var2 * &var1 / NORMAL CONTOUR ZTICK = &tick ZPIP = &pip, LOC = {3IN, 0IN} END TOKEN