1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
clear
!
ANSWER='YES'
INQUIRE\YESNO 'First, some sample graphs?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @sample_graphs
!
ANSWER='YES'
INQUIRE\YESNO 'View a graph with 2 y axes?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @2yaxes
!
ANSWER='YES'
INQUIRE\YESNO 'View filling the area under a curve?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @fill_under_curve
!
ANSWER='YES'
INQUIRE\YESNO 'Filling the area between two curves?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @fill_between_curves
!
ANSWER='YES'
INQUIRE\YESNO 'A filled ring?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN
clear
window 0
defaults
@filledring 12 5 green 100
ENDIF
!
ANSWER='YES'
INQUIRE\YESNO 'Some filled histogram examples?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @filled_histograms
!
ANSWER='YES'
INQUIRE\YESNO 'Examples of automatic axis label placement?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @automatic_axis_labels
!
ANSWER='YES'
INQUIRE\YESNO 'The next example shows that you can control just about every aspect of a graph?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @aspect_control
!
ANSWER='YES'
INQUIRE\YESNO 'A contour plot example, with legend?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @contour_example
!
ANSWER='YES'
INQUIRE\YESNO 'Now for a real life example of a data plot?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @cpu_example
!
!ANSWER='YES'
!INQUIRE\YESNO 'And another real life example?' ANSWER
!IF EQS(UCASE(ANSWER),'YES') THEN @sigma_example
!
ANSWER='YES'
INQUIRE\YESNO 'A color gradient density plot (with legend)?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @density_gradient_example
!
ANSWER='YES'
INQUIRE\YESNO 'A dithering type density plot?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @density_dithering_example
!
ANSWER='YES'
INQUIRE\YESNO 'A diffusion type density plot (with x and y profiles)?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @density_diffusion_example
!
ANSWER='YES'
INQUIRE\YESNO 'A derivative example?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @derivative_example
!
ANSWER='YES'
INQUIRE\YESNO 'An integration example?' ANSWER
IF EQS(UCASE(ANSWER),'YES') THEN @integration_example
|